10 lines
190 B
Go
10 lines
190 B
Go
package enum
|
|
|
|
type TwoFactor string
|
|
|
|
const (
|
|
TwoFactorEmail TwoFactor = "email"
|
|
TwoFactorSMS TwoFactor = "sms"
|
|
TwoFactorGoogle TwoFactor = "google" // 2fa with google authenticator
|
|
)
|