mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 05:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			285 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			285 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package shared
 | 
						|
 | 
						|
type HTTPHeaderPolicyRef struct {
 | 
						|
	IsPrior        bool  `yaml:"isPrior" json:"isPrior"`
 | 
						|
	IsOn           bool  `yaml:"isOn" json:"isOn"`
 | 
						|
	HeaderPolicyId int64 `yaml:"headerPolicyId" json:"headerPolicyId"`
 | 
						|
}
 | 
						|
 | 
						|
func (this *HTTPHeaderPolicyRef) Init() error {
 | 
						|
	return nil
 | 
						|
}
 |