新增代理服务与边缘节点注册功能

This commit is contained in:
2025-05-13 18:48:17 +08:00
parent 536f36ae02
commit d69a77df38
17 changed files with 573 additions and 203 deletions

View File

@@ -3,5 +3,8 @@ package main
import "proxy-server/client"
func main() {
client.Start()
err := client.Start()
if err != nil {
println(err)
}
}