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