feat: 实现网关服务的长连接功能

This commit is contained in:
fish
2026-03-28 19:57:20 +08:00
parent 03728d743e
commit be24b465b1
7 changed files with 379 additions and 0 deletions

8
backend/gateway/go.mod Normal file
View File

@@ -0,0 +1,8 @@
module backend/gateway
go 1.26.1
require (
github.com/gorilla/websocket v1.5.1
github.com/spf13/viper v1.19.0
)