重命名节点与网关入口包;添加构建和启动边缘节点的 PowerShell 脚本

This commit is contained in:
2025-05-17 19:01:20 +08:00
parent 14a778101d
commit aa967fbd6a
7 changed files with 193 additions and 0 deletions

1
cmd/edge/.env.example Normal file
View File

@@ -0,0 +1 @@
FWD_HOST=127.0.0.1

10
cmd/edge/main.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import "proxy-server/edge"
func main() {
err := edge.Start()
if err != nil {
println(err.Error())
}
}