实现修改缓存配置

This commit is contained in:
刘祥超
2020-09-20 16:27:59 +08:00
parent f238078054
commit ffb06e5b74
15 changed files with 802 additions and 191 deletions

View File

@@ -1,9 +1,9 @@
package serverconfigs
type HTTPStatConfig struct {
type HTTPStatRef struct {
IsOn bool `yaml:"isOn" json:"isOn"` // 是否开启
}
func (this *HTTPStatConfig) Init() error {
func (this *HTTPStatRef) Init() error {
return nil
}