scope.go 362 B

123456789101112
  1. package scope
  2. // Data scopes.
  3. const (
  4. // Local indicates to store the KV object in local datastore such as boltdb
  5. Local = "local"
  6. // Global indicates to store the KV object in global datastore
  7. Global = "global"
  8. // Swarm is not indicating a datastore location. It is defined here
  9. // along with the other two scopes just for consistency.
  10. Swarm = "swarm"
  11. )