forked from ebhomengo/niki
18 lines
868 B
Go
18 lines
868 B
Go
package errmsg
|
|
|
|
const (
|
|
ErrorMsgNotFound = "record not found"
|
|
ErrorMsgSomethingWentWrong = "something went wrong"
|
|
ErrorMsgInvalidInput = "invalid input"
|
|
ErrorMsgInvalidStatus = "invalid status"
|
|
ErrorMsgPhoneNumberIsNotUnique = "phone number is not unique"
|
|
ErrorMsgEmailIsNotUnique = "email is not unique"
|
|
ErrorMsgPhoneNumberIsNotValid = "phone number is not valid"
|
|
ErrorMsgUserNotAllowed = "user not allowed"
|
|
ErrorMsgUserNotFound = "benefactor not found"
|
|
ErrorMsgOtpCodeExist = "please wait a little bit"
|
|
ErrorMsgOtpCodeIsNotValid = "verification code is not valid"
|
|
ErrorMsgCantScanQueryResult = "can't scan query result"
|
|
ErrorMsgPhoneNumberOrPassIsIncorrect = "phone number or password is incorrect"
|
|
)
|