8 lines
174 B
Go
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"
|
|
)
|