Sergey Cherepanov 17e37fb8fb
refactor configs
2022-12-27 16:50:20 +03:00

10 lines
128 B
Go

package badgerprovider
type configGetter interface {
GetStorage() Config
}
type Config struct {
Path string `yaml:"path"`
}