mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 15:00:26 +08:00
14 lines
277 B
Go
14 lines
277 B
Go
package waf
|
|
|
|
import "reflect"
|
|
|
|
// ActionDefinition action definition
|
|
type ActionDefinition struct {
|
|
Name string
|
|
Code ActionString
|
|
Description string
|
|
Category string // category: block, verify, allow
|
|
Instance ActionInterface
|
|
Type reflect.Type
|
|
}
|