mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-27 23:20:26 +08:00
8 lines
247 B
Go
8 lines
247 B
Go
package serverconfigs
|
|
|
|
// 反向代理引用
|
|
type ReverseProxyRef struct {
|
|
IsOn bool `yaml:"isOn" json:"isOn"` // 是否启用
|
|
ReverseProxyId int64 `yaml:"reverseProxyId" json:"reverseProxyId"` // 反向代理ID
|
|
}
|