Files
EdgeCommon/pkg/serverconfigs/http_compression_gzip_ref.go

8 lines
245 B
Go
Raw Normal View History

2020-09-20 16:27:59 +08:00
package serverconfigs
type HTTPGzipRef struct {
2020-09-23 18:43:50 +08:00
IsPrior bool `yaml:"isPrior" json:"isPrior"` // 是否覆盖
IsOn bool `yaml:"isOn" json:"isOn"` // 是否开启
GzipId int64 `yaml:"gzipId" json:"gzipId"` // 使用的配置ID
2020-09-20 16:27:59 +08:00
}