mirror of
https://github.com/snowykami/neo-blog.git
synced 2025-09-03 15:56:22 +00:00
13 lines
354 B
Go
13 lines
354 B
Go
package resps
|
|
|
|
const (
|
|
Success = "success"
|
|
ErrParamInvalid = "invalid request parameters"
|
|
ErrUnauthorized = "unauthorized access"
|
|
ErrForbidden = "access forbidden"
|
|
ErrNotFound = "resource not found"
|
|
ErrInternalServerError = "internal server error"
|
|
|
|
ErrInvalidCredentials = "invalid credentials"
|
|
)
|