Skip to content

Commit

Permalink
OK
Browse files Browse the repository at this point in the history
  • Loading branch information
veryCrunchy authored Sep 16, 2024
1 parent 95c0cb1 commit 34f985f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ fs.readdirSync("./src/routes").forEach(async file => {
}
});

app.get('/', (req, res) => {
res.status(200).send('OK');
});

app.listen(env.PORT, () => {
console.log(`Running at http://localhost:${env.PORT}`);
});
Expand Down

0 comments on commit 34f985f

Please sign in to comment.