Skip to content

Commit a488772

Browse files
added health check
1 parent 360edd8 commit a488772

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/server/app.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,11 @@ app.route("/health").get((req, res) => {
8282
res.send("ok");
8383
});
8484

85+
app.route('/:chainId/health')
86+
.get((req, res) => {
87+
res.send('ok');
88+
});
89+
8590
// error handler
8691
app.use(
8792
(

0 commit comments

Comments
 (0)