init project structure

This commit is contained in:
ItsMalma
2025-11-01 16:56:42 +07:00
commit 2769bdd894
8 changed files with 413 additions and 0 deletions

11
src/main.ts Normal file
View File

@@ -0,0 +1,11 @@
import express from "express";
const app = express();
app.listen(3000, "localhost", (err) => {
if (err) {
console.log("Error starting server:", err);
} else {
console.log("Server is running at http://localhost:3000");
}
});