Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( OK = &Errno{Code: 0, Message: "OK."} InternalServerError = &Errno{Code: 10001, Message: "Internal server error."} ErrBind = &Errno{Code: 10002, Message: "Error occurred while binding the request body to the struct."} ErrValidation = &Errno{Code: 20001, Message: "Validation failed."} ErrDatabase = &Errno{Code: 20002, Message: "Database error."} ErrToken = &Errno{Code: 20003, Message: "Error occurred while signing the JSON web token."} // user errors ErrUserNotFound = &Errno{Code: 20102, Message: "The user was not found."} ErrEncrypt = &Errno{Code: 20101, Message: "Error occurred while encrypting the user password."} ErrTokenInvalid = &Errno{Code: 20103, Message: "The token was invalid."} ErrPasswordIncorrect = &Errno{Code: 20104, Message: "The password was incorrect."} )
Functions ¶
func IsErrUserNotFound ¶
Types ¶
Click to show internal directories.
Click to hide internal directories.