1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-26 10:05:10 +00:00

MineXLauncher 1.0

This commit is contained in:
zumbiepig
2024-07-20 09:12:07 -07:00
parent a497d41a4d
commit 128cdb700a
589 changed files with 4490540 additions and 0 deletions

9
routes/index.js Normal file
View File

@@ -0,0 +1,9 @@
import { Router } from "express";
const router = Router();
/* GET home page. */
router.get("/", function (req, res, next) {
res.render("index", { title: "Express" });
});
export default router;