Skip to content

Commit

Permalink
d
Browse files Browse the repository at this point in the history
  • Loading branch information
Dumuch committed Mar 26, 2024
1 parent c07d052 commit 6331d8b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ app.get('/', (_, res) => {
res.json('👋 Howdy from the server :)')
})

app.get('/api', (_, res) => {
res.json('👋 Howdy f123123rom the server :)')
})

// connection
const port = process.env.PORT || 9001
app.listen(port, () => console.log(`Listening to port ${port}`))

0 comments on commit 6331d8b

Please sign in to comment.