summaryrefslogtreecommitdiff
path: root/plugins/kv/config.go
blob: 09ba79cd2a960d3fe348149412b30175820c739c (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 constructors
type Config struct {
	Data map[string]interface{} `mapstructure:"kv"`
}