8 lines
206 B
Go
8 lines
206 B
Go
|
package conf
|
||
|
|
||
|
type ServeYaml struct {
|
||
|
Domains []string `yaml:"domains"`
|
||
|
RangeSupported bool `yaml:"rangeSupported"`
|
||
|
CacheSettings CacheSettingsYaml `yaml:"cacheSettings"`
|
||
|
}
|