From 8b64ab4f3821cde44abd2e0e5403d38797bc516a Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Tue, 6 Apr 2021 03:58:27 +0200 Subject: :construction: experiments + gateway route --- src/routes/gateway.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/routes/gateway.ts (limited to 'src/routes/gateway.ts') 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; -- cgit 1.5.1