Files
waf-platform/EdgeCommon/pkg/serverconfigs/firewallconfigs/http_firewall_action_allow.go
2026-02-04 20:27:13 +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"`
}