mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 04:10:25 +08:00
11 lines
280 B
Go
11 lines
280 B
Go
// Copyright 2021 GoEdge CDN goedge.cdn@gmail.com. All rights reserved.
|
|
|
|
package firewallconfigs
|
|
|
|
type FirewallScope = string
|
|
|
|
const (
|
|
FirewallScopeGlobal FirewallScope = "global"
|
|
FirewallScopeServer FirewallScope = "service" // 历史原因,代号为 service 而非 server
|
|
)
|