diff options
Diffstat (limited to 'common/kv/interface.go')
-rw-r--r-- | common/kv/interface.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/kv/interface.go b/common/kv/interface.go index 5736a6a7..bc6a07b2 100644 --- a/common/kv/interface.go +++ b/common/kv/interface.go @@ -30,6 +30,9 @@ type Storage interface { // Delete one or multiple keys. Delete(keys ...string) error + + // Stop the storage driver + Stop() } // Constructor provides storage based on the config |