10 lines
164 B
TypeScript
10 lines
164 B
TypeScript
import { Router } from "express";
|
|
|
|
const router = Router();
|
|
|
|
router.get("/", (req, res) => {
|
|
res.send({ url: "ws://localhost:8080" });
|
|
});
|
|
|
|
export default router;
|