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

123456789
  1. package errorcode
  2. const (
  3. OK = "OK"
  4. OperationFailed = "OperationFailed"
  5. DataNotFound = "DataNotFound"
  6. BadArgument = "BadArgument"
  7. TaskNotFound = "TaskNotFound"
  8. )