Files
EdgeCommon/pkg/serverconfigs/firewallconfigs/http_firewall_action_allow.go
2024-01-20 21:26:21 +08:00

14 lines
267 B
Go

package firewallconfigs
type AllowScope = string
const (
AllowScopeGroup AllowScope = "group"
AllowScopeServer AllowScope = "server"
AllowScopeGlobal AllowScope = "global"
)
type HTTPFirewallAllowAction struct {
Scope AllowScope `yaml:"scope" json:"scope"`
}