first commit
This commit is contained in:
11
src/index.ts
Normal file
11
src/index.ts
Normal 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"));
|
||||
Reference in New Issue
Block a user