diff options
-rwxr-xr-x | Makefile | 1 | ||||
-rw-r--r-- | plugins/kv/interface.go | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -51,3 +51,4 @@ lint: ## Run application linters golangci-lint run kv: go test -v -race -cover -tags=debug -covermode=atomic ./plugins/kv/boltdb + go test -v -race -cover -tags=debug -covermode=atomic ./plugins/kv/memory diff --git a/plugins/kv/interface.go b/plugins/kv/interface.go index f17754e6..3512fd73 100644 --- a/plugins/kv/interface.go +++ b/plugins/kv/interface.go @@ -42,4 +42,4 @@ type Storage interface { // Close closes the storage and underlying resources. Close() error -}
\ No newline at end of file +} |