Large commit, multiple projects/labs

This commit is contained in:
2026-04-13 16:19:41 -04:00
parent 942da76704
commit e2aa277aaf
1261 changed files with 180663 additions and 0 deletions
@@ -0,0 +1,12 @@
import express from "express";
import customerRoutes from "./routes/customerRoutes.js";
const app = express();
app.use(express.json());
const PORT = 3000;
app.get("/", (req, res) => {
res.send("Customer MVC App Running!");
});
app.use("/customers", customerRoutes);
app.listen(PORT, () => {
console.log(`Server running at http://localhost:${PORT}`);
});