mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-07 21:47:02 +09:00
9 lines
128 B
Go
9 lines
128 B
Go
package badgerprovider
|
|
|
|
type configGetter interface {
|
|
GetStorage() Config
|
|
}
|
|
|
|
type Config struct {
|
|
Path string `yaml:"path"`
|
|
}
|