1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-26 10:05:10 +00:00
This commit is contained in:
zumbiepig
2024-07-25 15:09:32 -07:00
parent 58c1ee1783
commit 05786f822c
27 changed files with 216 additions and 205 deletions

View File

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