20 lines
758 B
Go
20 lines
758 B
Go
|
|
// Package constants define constant variable
|
||
|
|
package constants
|
||
|
|
|
||
|
|
const (
|
||
|
|
// RespCodeSuccess define constant to indicates that the API was processed success
|
||
|
|
RespCodeSuccess = 2000
|
||
|
|
|
||
|
|
// RespCodeFailed define constant to indicates that the API was processed failed
|
||
|
|
RespCodeFailed = 3000
|
||
|
|
|
||
|
|
// RespCodeInvalidParams define constant to indicates that the request parameters failed to validate, parsing failed, or the action is invalid
|
||
|
|
RespCodeInvalidParams = 4001
|
||
|
|
|
||
|
|
// RespCodeUnauthorized define constant to indicates insufficient permissions or an invalid ClientID
|
||
|
|
RespCodeUnauthorized = 4002
|
||
|
|
|
||
|
|
// RespCodeServerError define constants to indicates a serious internal server error (such as database disconnection or code panic)
|
||
|
|
RespCodeServerError = 5000
|
||
|
|
)
|