mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 05:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			477 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			477 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
 | 
						|
 | 
						|
package dnsconfigs
 | 
						|
 | 
						|
type NSAccessLogRef struct {
 | 
						|
	IsPrior           bool `yaml:"isPrior" json:"isPrior"`                     // 是否覆盖
 | 
						|
	IsOn              bool `yaml:"isOn" json:"isOn"`                           // 是否启用
 | 
						|
	LogMissingDomains bool `yaml:"logMissingDomains" json:"logMissingDomains"` // 是否记录找不到的域名
 | 
						|
}
 | 
						|
 | 
						|
func (this *NSAccessLogRef) Init() error {
 | 
						|
	return nil
 | 
						|
}
 |