2022-07-14 17:18:08 +01:00
|
|
|
package conf
|
|
|
|
|
|
|
|
type ServeYaml struct {
|
2022-07-15 10:46:45 +01:00
|
|
|
DataStorage string `yaml:"dataStorage"`
|
2022-07-14 17:18:08 +01:00
|
|
|
Domains []string `yaml:"domains"`
|
|
|
|
RangeSupported bool `yaml:"rangeSupported"`
|
|
|
|
CacheSettings CacheSettingsYaml `yaml:"cacheSettings"`
|
|
|
|
}
|