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

index 00000000..53302f12 --- /dev/null +++ b/src/routes/gateway.ts
@@ -0,0 +1,9 @@ +import { Router } from "express"; + +const router = Router(); + +router.get("/", (req, res) => { + res.send({ url: "ws://localhost:8080" }); +}); + +export default router;