1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-08 08:04:49 +00:00
2024-07-20 09:12:07 -07:00

10 lines
196 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;