mirror of
https://github.com/chaitin/SafeLine.git
synced 2026-02-01 14:23:25 +08:00
12 lines
282 B
Go
12 lines
282 B
Go
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"
|
|
)
|