Files
EdgeCommon/pkg/serverconfigs/http_stat_config.go
2020-09-23 18:43:50 +08:00

11 lines
230 B
Go

package serverconfigs
type HTTPStatRef struct {
IsPrior bool `yaml:"isPrior" json:"isPrior"` // 是否覆盖
IsOn bool `yaml:"isOn" json:"isOn"` // 是否开启
}
func (this *HTTPStatRef) Init() error {
return nil
}