Skip to content

Commit

Permalink
add solution (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Hirter committed Sep 3, 2024
1 parent 6a51b36 commit 6cec7bf
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Exercises/05_ServerSideJS/Solution/src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const express = require('express')
const app = express()
const port = 3000

app.get('/api/v1/users', (req, res) => {
res.status(200).send( [])
})

app.listen(port, () => {
console.log(`Example app listening on port ${port}`)
})

0 comments on commit 6cec7bf

Please sign in to comment.