mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-04 16:00:25 +08:00
13 lines
206 B
Go
13 lines
206 B
Go
|
|
package waf
|
||
|
|
|
||
|
|
import "reflect"
|
||
|
|
|
||
|
|
// action definition
|
||
|
|
type ActionDefinition struct {
|
||
|
|
Name string
|
||
|
|
Code ActionString
|
||
|
|
Description string
|
||
|
|
Instance ActionInterface
|
||
|
|
Type reflect.Type
|
||
|
|
}
|