mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-27 21:06:37 +08:00
11 lines
233 B
Go
11 lines
233 B
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package firewallconfigs
|
|
|
|
type FirewallScope = string
|
|
|
|
const (
|
|
FirewallScopeGlobal FirewallScope = "global"
|
|
FirewallScopeService FirewallScope = "service"
|
|
)
|