Files
utodo/internal/model/enum/twoFactor.go
2025-07-14 10:48:21 +08:00

10 lines
190 B
Go

package enum
type TwoFactor string
const (
TwoFactorEmail TwoFactor = "email"
TwoFactorSMS TwoFactor = "sms"
TwoFactorGoogle TwoFactor = "google" // 2fa with google authenticator
)