first commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package service
|
||||
|
||||
import "errors"
|
||||
|
||||
var (
|
||||
ErrUnauthorized = errors.New("unauthorized")
|
||||
ErrForbidden = errors.New("forbidden")
|
||||
ErrNotFound = errors.New("not found")
|
||||
ErrBadRequest = errors.New("bad request")
|
||||
ErrConflict = errors.New("conflict")
|
||||
)
|
||||
Reference in New Issue
Block a user