Files
EdgeCommon/pkg/serverconfigs/http_stat_config.go
2020-09-20 16:27:59 +08:00

10 lines
159 B
Go

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