summary refs log tree commit diff
path: root/src/routes/gateway.ts
blob: edbb889088d994fdbf842df441c442b2cb313ccd (plain) (blame)
1
2
3
4
5
6
7
8
9
import { Router } from "express";

const router = Router();

router.get("/", (req, res) => {
	res.send({ url: "ws://localhost:2000" });
});

export default router;