any-sync/node/storage/config.go
Sergey Cherepanov 17e37fb8fb
refactor configs
2022-12-27 16:50:20 +03:00

10 lines
121 B
Go

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