添加了节点服务器,各个服务器之间支持多对多

This commit is contained in:
flswld
2022-12-24 04:14:33 +08:00
parent 16dd9c1e87
commit 7e86669628
92 changed files with 1429 additions and 287 deletions

View File

@@ -8,6 +8,7 @@ import (
"os"
"hk4e/pathfinding/app"
"hk4e/pkg/statsviz_serve"
)
var (
@@ -16,7 +17,9 @@ var (
func main() {
flag.Parse()
// go statsviz_serve.Serve("0.0.0.0:2345")
go func() {
_ = statsviz_serve.Serve("0.0.0.0:6789")
}()
err := app.Run(context.TODO(), *config)
if err != nil {
fmt.Println(err)