first commit

This commit is contained in:
2023-06-24 19:13:06 +02:00
commit e5dc96be60
9 changed files with 2174 additions and 0 deletions

11
src/index.ts Normal file
View File

@@ -0,0 +1,11 @@
import express, { Request, Response } from "express";
const app = express();
app.get("/", (req: Request, res: Response) => {
return res.json({
status: "su se",
});
});
app.listen(4000, () => console.log("listening on port 4000"));