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
|
|
|
|
|
}
|