summaryrefslogtreecommitdiff
path: root/plugins/kv/memory/config.go
blob: 329e7fff6d1ba1ff387fce8858a8149f27c86e0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package memory

// Config is default config for the in-memory driver
type Config struct {
	// Enabled or disabled (true or false)
	Enabled bool
}

// InitDefaults by default driver is turned off
func (c *Config) InitDefaults() {
	c.Enabled = false
}