//go:build !nullauth package auth import ( "errors" ) func NewNull() (AuthProvider, error) { return nil, errors.New("NullAuth is disabled") }