core/app/constants/errors.go
2024-05-10 13:17:18 +07:00

8 lines
174 B
Go

package constants
const (
AUTH_FAILED = "User with specified email and password not found"
NOT_FOUND = "Wrong request method or path"
UNAUTHORIZED = "Unauthorized"
)