Files
novel/internal/consts/consts.go
2024-01-12 18:08:51 +08:00

9 lines
240 B
Go

package consts
const (
PageSize = 10
PhoneVerifyType1 = 1 // 1-注册/登录
PhoneVerifyType2 = 2 // 2-找回密码
ContextKey = "ContextKey" // 上下文变量存储键名,前后端系统共享
)