mirror of
https://github.com/gogs/gogs.git
synced 2026-03-01 09:40:55 +01:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: unknwon <2946214+unknwon@users.noreply.github.com>
12 lines
160 B
Go
12 lines
160 B
Go
//go:build !pam
|
|
|
|
package pam
|
|
|
|
import (
|
|
"github.com/cockroachdb/errors"
|
|
)
|
|
|
|
func (*Config) doAuth(_, _ string) error {
|
|
return errors.New("PAM not supported")
|
|
}
|