liuhaijun 3f5f28d785 add sheduling agent
Change-Id: I89f35fb3984044c57f10727432755012542f9fd8
2023-11-16 10:55:57 +00:00

13 lines
355 B
Go

package errors
var enUSText = map[int]string{
SUCCESS: "OK",
FAILURE: "FAIL",
NotFound: "resources not found",
ServerError: "Internal server error",
TooManyRequests: "Too many requests",
InvalidParameter: "Parameter error",
AuthorizationError: "Authorization error",
RBACError: "No access",
}