mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 07:40:56 +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
 | 
						|
}
 |