summaryrefslogtreecommitdiff
path: root/plugins/memory/memorykv/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/memory/memorykv/config.go')
-rw-r--r--plugins/memory/memorykv/config.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/plugins/memory/memorykv/config.go b/plugins/memory/memorykv/config.go
deleted file mode 100644
index a8a8993f..00000000
--- a/plugins/memory/memorykv/config.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package memorykv
-
-// Config is default config for the in-memory driver
-type Config struct {
- // Interval for the check
- Interval int
-}
-
-// InitDefaults by default driver is turned off
-func (c *Config) InitDefaults() {
- if c.Interval == 0 {
- c.Interval = 60 // seconds
- }
-}