initialize

This commit is contained in:
2025-05-14 19:27:36 +02:00
commit 28ced1c764
870 changed files with 92291 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import express, { request } from 'express';
const app = express();
const PORT = process.env.PORT || 3000;
app.use(express.json())
app.listen(PORT, ()=>{
console.log(`Running on Port: ${PORT}`)
});