15 lines
314 B
Go
15 lines
314 B
Go
|
|
package response
|
||
|
|
|
||
|
|
const (
|
||
|
|
ErrCodeSuccess = 0
|
||
|
|
ErrCodeBadRequest = 40000
|
||
|
|
ErrCodeUnauthorized = 40100
|
||
|
|
ErrCodeForbidden = 40300
|
||
|
|
ErrCodeNotFound = 40400
|
||
|
|
ErrCodeInternal = 50000
|
||
|
|
ErrCodeDBError = 50001
|
||
|
|
ErrCodeTokenExpired = 40101
|
||
|
|
ErrCodeTokenInvalid = 40102
|
||
|
|
ErrCodeRoleMismatch = 40301
|
||
|
|
)
|