upload files

This commit is contained in:
xingzhe.ru
2025-06-29 22:31:00 +00:00
parent 80b9d9c8c8
commit b1a9ee1403
7 changed files with 1098 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
const app = require('./app');
const PORT = process.env.PORT || 3002;
app.listen(PORT, () => {
console.log(`Mock backend running on http://localhost:${PORT}`);
});