Skip to content

Commit

Permalink
Add new health check
Browse files Browse the repository at this point in the history
  • Loading branch information
IanWoodard committed Apr 29, 2024
1 parent 70ff359 commit 0d55503
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ chains.forEach((chain) => {
// TODO: handle errors and exits
});

app.get("/health", (req, res) => {
res.send("OK");
});

app.get("/liquidator_readiness_check", (req, res) => {
res.send("OK");
});
Expand Down

0 comments on commit 0d55503

Please # to comment.