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

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