Delete server.js

This commit is contained in:
2025-06-02 03:18:22 +00:00
parent d0ddbef4af
commit 274fc47773

View File

@@ -1,11 +0,0 @@
import { handler } from './build/handler.js';
import express from 'express';
const app = express();
const PORT = process.env.PORT || 3000;
app.use(handler);
app.listen(PORT, () => {
console.log(`Server running on port ${PORT}`);
});