mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2026-01-10 23:05:49 +08:00
12 lines
213 B
Go
12 lines
213 B
Go
package firewallconfigs
|
|
|
|
import "reflect"
|
|
|
|
// action definition
|
|
type HTTPFirewallActionDefinition struct {
|
|
Name string
|
|
Code HTTPFirewallActionString
|
|
Description string
|
|
Type reflect.Type
|
|
}
|