Skip to content

Commit 34f985f

Browse files
authored
OK
1 parent 95c0cb1 commit 34f985f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ fs.readdirSync("./src/routes").forEach(async file => {
4848
}
4949
});
5050

51+
app.get('/', (req, res) => {
52+
res.status(200).send('OK');
53+
});
54+
5155
app.listen(env.PORT, () => {
5256
console.log(`Running at http://localhost:${env.PORT}`);
5357
});

0 commit comments

Comments
 (0)