Files
EdgeCommon/pkg/serverconfigs/reverse_proxy_ref.go
2020-09-23 18:43:50 +08:00

9 lines
331 B
Go

package serverconfigs
// 反向代理引用
type ReverseProxyRef struct {
IsPrior bool `yaml:"isPrior" json:"isPrior"` // 是否覆盖
IsOn bool `yaml:"isOn" json:"isOn"` // 是否启用
ReverseProxyId int64 `yaml:"reverseProxyId" json:"reverseProxyId"` // 反向代理ID
}