cityuni-webserver/conf/serve.go
Captain ALM 7ec2e01e43
All checks were successful
continuous-integration/drone/push Build is passing
Add the ability to toggle filtering URL parameters passed to page providers.
2022-07-15 13:28:29 +01:00

10 lines
331 B
Go

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