The mighty, self-hostable Git server for the command line 🍦
1package auth 2 3import "errors" 4 5var ( 6 // ErrUnsupportedAuthMethod is returned when an unsupported auth method is 7 // used. 8 ErrUnsupportedAuthMethod = errors.New("unsupported auth method") 9)