Files
EdgeCommon/pkg/serverconfigs/http_stat_config.go

10 lines
165 B
Go
Raw Normal View History

2020-09-20 14:48:46 +08:00
package serverconfigs
type HTTPStatConfig struct {
IsOn bool `yaml:"isOn" json:"isOn"` // 是否开启
}
func (this *HTTPStatConfig) Init() error {
return nil
}