8 lines
262 B
Go
8 lines
262 B
Go
|
package conf
|
||
|
|
||
|
type CacheSettingsYaml struct {
|
||
|
MaxAge uint `yaml:"maxAge"`
|
||
|
NotModifiedResponseUsingLastModified bool `yaml:"notModifiedUsingLastModified"`
|
||
|
NotModifiedResponseUsingETags bool `yaml:"notModifiedUsingETags"`
|
||
|
}
|