Skip to content

Commit 6aff1fa

Browse files
committed
Remove hello world route
Signed-off-by: Diogo Correia <[email protected]>
1 parent c8dea2a commit 6aff1fa

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

backend/src/index.js

-6
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,6 @@ api.init(app);
2323
// Handler any non-handled errors
2424
app.use(errorHandler);
2525

26-
// TODO remove after implementing other routes
27-
app.get('/hello', (req, res) => {
28-
//res.status(400);
29-
res.send('HELLOOO :)');
30-
});
31-
3226
app.listen(port, () => {
3327
console.log(`Example app listening at http://localhost:${port}`);
3428
});

0 commit comments

Comments
 (0)