fusenapi/constants/api_response_code.go
laodaming 29f6e2ddbf fix
2023-06-06 16:14:02 +08:00

9 lines
165 B
Go

package constants
// api接口code响应码
const (
CODE_UNAUTH = 401 //未授权
CODE_SERVICE_ERR = 510 //内部代码错误
CODE_OK = 200 //ok
)