package servicemanager import ( "wss-pool/cmd/websocketservice" "wss-pool/config" red "wss-pool/internal/redis" ) // Currency TODO: 优化需要多个广播通道 func Currency(ipServer, addrServer string) { red.RedisClient = red.RedisInit(config.Config.Redis.DbEleven) websocketservice.Connect(ipServer, addrServer) }