Files

12 lines
282 B
Go
Raw Permalink Normal View History

2024-07-04 17:51:05 +08:00
package response
const (
ErrLoginRequired = "login-required"
ErrWrongPasscode = "wrong-passcode"
ErrWrongTimeGap = "wrong-time-gap"
ErrInternalError = "internal-error"
ErrDataNotExist = "data-not-exist"
ErrWrongFileType = "wrong-filetype"
ErrReadOnly = "read-only"
)