This commit is contained in:
nemunaire 2021-02-13 18:34:44 +01:00
commit 2f4cc04db2
7 changed files with 30 additions and 29 deletions

View file

@ -4,7 +4,7 @@ type AuthMethod interface {
checkAuth(username, password string) (bool, error)
}
type NoAuth struct {}
type NoAuth struct{}
func (NoAuth) checkAuth(username, password string) (res bool, err error) {
return true, nil