mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 05:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			230 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			230 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package serverconfigs
 | 
						|
 | 
						|
type HTTPStatRef struct {
 | 
						|
	IsPrior bool `yaml:"isPrior" json:"isPrior"` // 是否覆盖
 | 
						|
	IsOn    bool `yaml:"isOn" json:"isOn"`       // 是否开启
 | 
						|
}
 | 
						|
 | 
						|
func (this *HTTPStatRef) Init() error {
 | 
						|
	return nil
 | 
						|
}
 |