Files
EdgeNode/internal/nodes/named_server.go

10 lines
260 B
Go
Raw Normal View History

2020-09-09 18:53:53 +08:00
package nodes
import "github.com/TeaOSLab/EdgeNode/internal/configs/serverconfigs"
// 域名和服务映射
type NamedServer struct {
Name string // 匹配后的域名
Server *serverconfigs.ServerConfig // 匹配后的服务配置
}