Files
EdgeCommon/pkg/serverconfigs/http_stat_config.go

11 lines
230 B
Go
Raw Normal View History

2020-09-20 14:48:46 +08:00
package serverconfigs
2020-09-20 16:27:59 +08:00
type HTTPStatRef struct {
2020-09-23 18:43:50 +08:00
IsPrior bool `yaml:"isPrior" json:"isPrior"` // 是否覆盖
IsOn bool `yaml:"isOn" json:"isOn"` // 是否开启
2020-09-20 14:48:46 +08:00
}
2020-09-20 16:27:59 +08:00
func (this *HTTPStatRef) Init() error {
2020-09-20 14:48:46 +08:00
return nil
}