mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 16:00:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			249 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			249 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package nodes
 | 
						|
 | 
						|
import "github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
 | 
						|
 | 
						|
// 域名和服务映射
 | 
						|
type NamedServer struct {
 | 
						|
	Name   string                      // 匹配后的域名
 | 
						|
	Server *serverconfigs.ServerConfig // 匹配后的服务配置
 | 
						|
}
 |