Skip to content

Commit

Permalink
Remove hello world route
Browse files Browse the repository at this point in the history
Signed-off-by: Diogo Correia <[email protected]>
  • Loading branch information
diogotcorreia committed Dec 5, 2020
1 parent c8dea2a commit 6aff1fa
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions backend/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@ api.init(app);
// Handler any non-handled errors
app.use(errorHandler);

// TODO remove after implementing other routes
app.get('/hello', (req, res) => {
//res.status(400);
res.send('HELLOOO :)');
});

app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`);
});

0 comments on commit 6aff1fa

Please sign in to comment.