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") )