1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-08 08:24:50 +00:00
2024-07-24 13:28:21 -07:00

10 lines
195 B
JavaScript

import { Router } from "express";
const router = Router();
/* GET users listing. */
router.get("/", function (req, res, next) {
res.send("respond with a resource");
});
export default router;