package db var authMap = map[string]AuthType{ string(AuthTypePassword): AuthTypePassword, string(AuthTypeDiscord): AuthTypeDiscord, string(AuthTypeGoogle): AuthTypeGoogle, } func AuthTypeFromString(input string) AuthType { return authMap[input] }