🐛 Fix wrong type const

This commit is contained in:
LittleSheep 2025-01-28 19:41:22 +08:00
parent 71e959805f
commit 867a556204

View File

@ -16,8 +16,8 @@ type AuthFactorType = int8
const ( const (
PasswordAuthFactor = AuthFactorType(iota) PasswordAuthFactor = AuthFactorType(iota)
EmailPasswordFactor EmailPasswordFactor
InAppNotifyFactor
TimeOtpFactor TimeOtpFactor
InAppNotifyFactor
) )
type AuthFactor struct { type AuthFactor struct {