Files
EdgeCommon/pkg/serverconfigs/reverse_proxy_ref.go

14 lines
424 B
Go
Raw Permalink Normal View History

2020-09-21 11:37:09 +08:00
package serverconfigs
2021-09-22 19:39:55 +08:00
// ReverseProxyRef 反向代理引用
2020-09-21 11:37:09 +08:00
type ReverseProxyRef struct {
2020-09-23 18:43:50 +08:00
IsPrior bool `yaml:"isPrior" json:"isPrior"` // 是否覆盖
2020-09-21 11:37:09 +08:00
IsOn bool `yaml:"isOn" json:"isOn"` // 是否启用
ReverseProxyId int64 `yaml:"reverseProxyId" json:"reverseProxyId"` // 反向代理ID
}
2020-09-26 19:54:20 +08:00
2021-09-22 19:39:55 +08:00
// Init 初始化
2020-09-26 19:54:20 +08:00
func (this *ReverseProxyRef) Init() error {
return nil
}