Files
EdgeCommon/pkg/serverconfigs/http_stat_config.go
2020-09-20 14:48:46 +08:00

10 lines
165 B
Go

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