mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-06 01:50:26 +08:00
10 lines
260 B
Go
10 lines
260 B
Go
|
|
package nodes
|
||
|
|
|
||
|
|
import "github.com/TeaOSLab/EdgeNode/internal/configs/serverconfigs"
|
||
|
|
|
||
|
|
// 域名和服务映射
|
||
|
|
type NamedServer struct {
|
||
|
|
Name string // 匹配后的域名
|
||
|
|
Server *serverconfigs.ServerConfig // 匹配后的服务配置
|
||
|
|
}
|