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