14 lines
248 B
Go
14 lines
248 B
Go
|
|
package enum
|
||
|
|
|
||
|
|
// VerifyKind is used for rate-limit keys in verification flows.
|
||
|
|
type VerifyKind string
|
||
|
|
|
||
|
|
const (
|
||
|
|
VerifyKindEmail VerifyKind = "email"
|
||
|
|
VerifyKindPhone VerifyKind = "phone"
|
||
|
|
)
|
||
|
|
|
||
|
|
func (k VerifyKind) String() string {
|
||
|
|
return string(k)
|
||
|
|
}
|