Files
EdgeCommon/pkg/serverconfigs/http_stat_config.go

10 lines
159 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-20 14:48:46 +08:00
IsOn bool `yaml:"isOn" json:"isOn"` // 是否开启
}
2020-09-20 16:27:59 +08:00
func (this *HTTPStatRef) Init() error {
2020-09-20 14:48:46 +08:00
return nil
}