diff options
Diffstat (limited to 'plugins/kv/interface.go')
-rw-r--r-- | plugins/kv/interface.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/kv/interface.go b/plugins/kv/interface.go index c1367cdf..6c2a66f2 100644 --- a/plugins/kv/interface.go +++ b/plugins/kv/interface.go @@ -38,4 +38,8 @@ type Storage interface { // Close closes the storage and underlying resources. Close() error + + // Configure used to configure storage + // key - yaml config key, for example kv.boltdb-north + Configure(key string) (Storage, error) } |