10 lines
128 B
Go
10 lines
128 B
Go
package badgerprovider
|
|
|
|
type configGetter interface {
|
|
GetStorage() Config
|
|
}
|
|
|
|
type Config struct {
|
|
Path string `yaml:"path"`
|
|
}
|