github.com/Prakhar-Agarwal-byte/moby@v0.0.0-20231027092010-a14e3e8ab87e/libnetwork/scope/scope.go (about)

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