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

index cab685e2..9d34c999 100644 --- a/src/routes/gateway.ts +++ b/src/routes/gateway.ts
@@ -1,9 +1,12 @@ import { Router } from "express"; +import Config from "../util/Config" const router = Router(); +const url = Config.get().server.root_url; + router.get("/", (req, res) => { - res.send({ url: "ws://localhost:3002" }); + res.send({ url: `ws://${url}:3002` }); }); export default router;