mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
14 lines
267 B
Go
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"`
|
|
}
|