添加代理与节点的注册与端口分配接口功能

This commit is contained in:
2025-05-13 09:29:13 +08:00
parent 957d9ef443
commit 60df1548f0
17 changed files with 692 additions and 464 deletions

View File

@@ -1,4 +1,4 @@
package node
package edge
type ISP int32
@@ -8,3 +8,9 @@ const (
IspChinaUnicom // 中国联通
IspChinaMobile // 中国移动
)
type Type int32
const (
TypeSelfHosted Type = iota + 1 // 自建节点
)