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 42a2d0ce72
commit 2379faafdc
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 home page. */
router.get("/", function (req, res, next) {
res.render("index", { title: "Express" });
router.get('/', function (req, res, next) {
res.render('index', { title: 'Express' });
});
export default router;