Package, Server, Routes

Adding the base of the server program
This commit is contained in:
2026-06-14 19:14:35 +02:00
parent 35372b060a
commit 15fde72f08
6 changed files with 1604 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import {Router} from "express";
// ----------------------------------------
// Router config
// ----------------------------------------
const router = Router();
// ----------------------------------------
// Routes
// ----------------------------------------
router.get("/", (req, res) => {
res.json("Server Alive !")
})
// ----------------------------------------
// Export router
// ----------------------------------------
module.exports = router;