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.

consts.go 509 B

12345678910111213141516171819202122232425262728293031
  1. package consts
  2. const (
  3. REDUNDANCY_REP = "rep"
  4. REDUNDANCY_EC = "ec"
  5. )
  6. const (
  7. IPFS_STATUS_OK = "OK"
  8. STORAGE_DIRECTORY_STATUS_OK = "OK"
  9. NODE_STATE_NORMAL = "Normal"
  10. NODE_STATE_UNAVAILABLE = "Unavailable"
  11. )
  12. const (
  13. OBJECT_STATE_NORMAL = "Normal"
  14. OBJECT_STATE_DELETED = "Deleted"
  15. )
  16. const (
  17. STORAGE_OBJECT_STATE_NORMAL = "Normal"
  18. STORAGE_OBJECT_STATE_DELETED = "Deleted"
  19. STORAGE_OBJECT_STATE_OUTDATED = "Outdated"
  20. )
  21. const (
  22. CACHE_STATE_PINNED = "Pinned"
  23. CACHE_STATE_TEMP = "Temp"
  24. )

公共库

Contributors (1)