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