mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-27 21:06:37 +08:00
12 lines
294 B
Go
12 lines
294 B
Go
package serverconfigs
|
|
|
|
type HTTPFirewallRef struct {
|
|
IsPrior bool `yaml:"isPrior" json:"isPrior"`
|
|
IsOn bool `yaml:"isOn" json:"isOn"`
|
|
FirewallPolicyId int64 `yaml:"firewallPolicyId" json:"firewallPolicyId"`
|
|
}
|
|
|
|
func (this *HTTPFirewallRef) Init() error {
|
|
return nil
|
|
}
|