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 223 B

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