TinySkin/model/const.go
thehrz 145bb045e9
Some checks failed
CI / deploy (push) Failing after 2m53s
fork from xmdhs/authlib-skin
2025-01-24 16:57:58 +08:00

20 lines
222 B
Go

package model
type APIStatus int
const (
ErrUnknown APIStatus = iota - 1
OK
ErrInput
ErrService
ErrExistUser
ErrRegLimit
ErrAuth
ErrPassWord
ErrExitsName
ErrNotAdmin
ErrUserDisable
ErrCaptcha
ErrEmailSend
)