libnetwork/datastore: remove deprecated scope consts

Removes the deprecated consts, which moved to a separate "scope" package
in commit 6ec03d6745, and are no longer used;

- datastore.LocalScope
- datastore.GlobalScope
- datastore.SwarmScope

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2023-08-16 14:51:55 +02:00
parent 16f152b1ec
commit 0c522c6bbf
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C

View file

@ -71,22 +71,6 @@ type ScopeClientCfg struct {
Config *store.Config
}
const (
// LocalScope indicates to store the KV object in local datastore such as boltdb
//
// Deprecated: use [scope.Local].
LocalScope = scope.Local
// GlobalScope indicates to store the KV object in global datastore
//
// Deprecated: use [scope.Global].
GlobalScope = scope.Global
// SwarmScope is not indicating a datastore location. It is defined here
// along with the other two scopes just for consistency.
//
// Deprecated: use [scope.Swarm].
SwarmScope = scope.Swarm
)
const (
// NetworkKeyPrefix is the prefix for network key in the kv store
NetworkKeyPrefix = "network"