You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

error_code.go 257 B

11 months ago
10 months ago
1234567891011
  1. package errorcode
  2. const (
  3. OK = "OK"
  4. OperationFailed = "OperationFailed"
  5. DataNotFound = "DataNotFound"
  6. DataExists = "DataExists"
  7. BadArgument = "BadArgument"
  8. TaskNotFound = "TaskNotFound"
  9. Unauthorized = "Unauthorized"
  10. )