go fmt
This commit is contained in:
parent
331192ccbe
commit
2f4cc04db2
7 changed files with 30 additions and 29 deletions
|
|
@ -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
|
||||
|
|
|
|||
Reference in a new issue