daemon/libnetwork/internal/kvstore: remove unused BOLTDB and Backend type

The `BOLTDB` const and related `Backend` type are no longer used since
[moby@ed08486].

[moby@ed08486]: ed08486ec7

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2025-09-29 14:45:40 +02:00
parent 5fc0251dc2
commit 1697aecbd5

View File

@@ -4,12 +4,6 @@ import (
"errors"
)
// Backend represents a KV Store Backend
type Backend string
// BOLTDB backend
const BOLTDB Backend = "boltdb"
var (
// ErrBackendNotSupported is thrown when the backend k/v store is not supported by libkv
ErrBackendNotSupported = errors.New("Backend storage not supported yet, please choose one of")