文件恢复

This commit is contained in:
robin
2026-03-04 19:14:57 +08:00
parent 54e808a85d
commit 30a1b4fa5e
4 changed files with 631 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package systemconfigs
// UpgradeConfig 升级设置
type UpgradeConfig struct {
AutoUpgrade bool `json:"autoUpgrade"` // 是否开启自动升级控制EdgeNode、EdgeDNS、EdgeHTTPDNS三个模块
}
func NewUpgradeConfig() *UpgradeConfig {
return &UpgradeConfig{
AutoUpgrade: false,
}
}