Skip to content

Commit

Permalink
Merge branch 'hngx-org:main' into optimizeBee
Browse files Browse the repository at this point in the history
  • Loading branch information
preciousBlessed authored Sep 22, 2023
2 parents d136c4f + 18f48bd commit 56b07ce
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ app.use('/api/organization', orgRoutes);
app.use('/api/lunch', lunchRoutes);
app.use('/api/withdrawals', withDrawalRoute);

app.use('/', (req, res) => {
res.status(200).send(`<h1>Welcome to Team Lightning Free Lunch App</h1>
<br><p><a href=''>Click here</a> to go to the API doc<p>`)
})

// Middlewares
app.use(errorHandlerMiddleware);
app.use(notFound);
Expand Down

0 comments on commit 56b07ce

Please sign in to comment.