Some checks failed
Build Docker Image / Build-Docker-Image (push) Has been cancelled
14 lines
330 B
Go
14 lines
330 B
Go
package core
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotFound = errors.New("the value does not exist")
|
|
ErrAlreadyExists = errors.New("row already exists")
|
|
|
|
ErrInternal = errors.New("internal server error")
|
|
ErrUnauthorized = errors.New("you are not authorized to perform this action")
|
|
|
|
ErrBadRequest = errors.New("bad request")
|
|
)
|