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

23 lines
418 B

  1. package models
  2. type Status int
  3. const (
  4. Blocked Status = 0
  5. Available Status = 1
  6. Background Status = 2
  7. Active Status = 3
  8. Completed Status = 4
  9. Failed Status = 5
  10. Dropped Status = 6
  11. )
  12. var StatusLabels = map[Status]string{
  13. Blocked: "Blocked",
  14. Available: "Available",
  15. Background: "Background",
  16. Active: "Active",
  17. Completed: "Completed",
  18. Failed: "Failed",
  19. Dropped: "Dropped",
  20. }