增加配置分组配置

This commit is contained in:
刘祥超
2021-09-22 19:39:55 +08:00
parent e8429b8f74
commit 7c530680c0
13 changed files with 1438 additions and 154 deletions

View File

@@ -1,13 +1,13 @@
package serverconfigs
// 反向代理引用
// ReverseProxyRef 反向代理引用
type ReverseProxyRef struct {
IsPrior bool `yaml:"isPrior" json:"isPrior"` // 是否覆盖
IsOn bool `yaml:"isOn" json:"isOn"` // 是否启用
ReverseProxyId int64 `yaml:"reverseProxyId" json:"reverseProxyId"` // 反向代理ID
}
// 初始化
// Init 初始化
func (this *ReverseProxyRef) Init() error {
return nil
}