mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-25 11:36:35 +08:00
19 lines
510 B
Go
19 lines
510 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package userconfigs
|
|
|
|
type UserIdentityStatus = string
|
|
|
|
const (
|
|
UserIdentityStatusNone UserIdentityStatus = "none"
|
|
UserIdentityStatusSubmitted UserIdentityStatus = "submitted"
|
|
UserIdentityStatusRejected UserIdentityStatus = "rejected"
|
|
UserIdentityStatusVerified UserIdentityStatus = "verified"
|
|
)
|
|
|
|
type UserIdentityType = string
|
|
|
|
const (
|
|
UserIdentityTypeIDCard UserIdentityType = "idCard"
|
|
)
|