diff options
author | Valery Piashchynski <[email protected]> | 2021-09-16 17:12:37 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-09-16 17:12:37 +0300 |
commit | f3491c089b4da77fd8d2bc942a88b6b8d117a8a5 (patch) | |
tree | 32bfffb1f24eeee7b909747cc00a6a6b9fd3ee83 /plugins/memory/memorykv/config.go | |
parent | 5d2cd55ab522d4f1e65a833f91146444465a32ac (diff) |
Move plugins to a separate repository
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/memory/memorykv/config.go')
-rw-r--r-- | plugins/memory/memorykv/config.go | 14 |
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 - } -} |