summary refs log tree commit diff
path: root/src/routes
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes')
-rw-r--r--src/routes/gateway.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/gateway.ts b/src/routes/gateway.ts

index 53302f12..edbb8890 100644 --- a/src/routes/gateway.ts +++ b/src/routes/gateway.ts
@@ -3,7 +3,7 @@ import { Router } from "express"; const router = Router(); router.get("/", (req, res) => { - res.send({ url: "ws://localhost:8080" }); + res.send({ url: "ws://localhost:2000" }); }); export default router;