mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2026-01-06 20:15:50 +08:00
10 lines
159 B
Go
10 lines
159 B
Go
package serverconfigs
|
|
|
|
type HTTPStatRef struct {
|
|
IsOn bool `yaml:"isOn" json:"isOn"` // 是否开启
|
|
}
|
|
|
|
func (this *HTTPStatRef) Init() error {
|
|
return nil
|
|
}
|