mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-14 13:10:25 +08:00
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
|
||
|
|
}
|