mirror of
https://github.com/1f349/lavender.git
synced 2025-01-09 00:06:31 +00:00
17 lines
227 B
Go
17 lines
227 B
Go
package types
|
|
|
|
type AuthType byte
|
|
|
|
const (
|
|
AuthTypeLocal AuthType = iota
|
|
AuthTypeOauth2
|
|
)
|
|
|
|
var authTypeNames = map[AuthType]string{
|
|
AuthTypeOauth2: "OAuth2",
|
|
}
|
|
|
|
func (t AuthType) String() string {
|
|
return authTypeNames[t]
|
|
}
|