Files
EdgeCommon/pkg/serverconfigs/reverse_proxy_ref.go
2021-09-22 19:39:55 +08:00

14 lines
424 B
Go

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
}