mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 23:20: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
|
|
}
|