cityuni-webserver/conf/serve.go
Captain ALM ef3c387f39
All checks were successful
continuous-integration/drone/push Build is passing
Switch over from test to go-info.
Improve Makefile and add new compilation fields.
2022-07-16 00:53:50 +01:00

11 lines
393 B
Go

package conf
type ServeYaml struct {
DataStorage string `yaml:"dataStorage"`
Domains []string `yaml:"domains"`
RangeSupported bool `yaml:"rangeSupported"`
FilterURLQueries bool `yaml:"filterURLQueries"`
EnableGoInfoPage bool `yaml:"enableGoInfoPage"`
CacheSettings CacheSettingsYaml `yaml:"cacheSettings"`
}