Add a lil homepage to show its running lol

This commit is contained in:
Christopher Cookman 2025-09-15 05:47:07 -06:00
parent 1efff58746
commit d3b273010e

10
routes/.js Normal file
View file

@ -0,0 +1,10 @@
const express = require('express');
const router = express.Router();
const log = global.log;
router.get("/", async (req, res) => {
res.send("NotParcel is running")
});
module.exports = router;