summaryrefslogtreecommitdiff
path: root/plugins/kv/config.go
blob: 66095817ffcfbdbd7eb2250df4bf1992d2a864f2 (plain)
1
2
3
4
5
6
package kv

// Config represents general storage configuration with keys as the user defined kv-names and values as the drivers
type Config struct {
	Data map[string]interface{} `mapstructure:"kv"`
}