added API placeholder

This commit is contained in:
2025-08-12 12:09:05 -04:00
parent 11152f08b3
commit dd07e04f7d
9 changed files with 1486 additions and 58 deletions

11
api/index.js Normal file
View File

@@ -0,0 +1,11 @@
const express = require('express')
const app = express()
const port = 3000
app.get('/', (req, res) => {
res.send('Hello World!')
})
app.listen(port, () => {
console.log(`Example app listening on port ${port}`)
})