diff --git a/packages/delegator/delegator.ts b/packages/delegator/delegator.ts index 3a986b0..933ee7f 100644 --- a/packages/delegator/delegator.ts +++ b/packages/delegator/delegator.ts @@ -56,6 +56,9 @@ async function migrate(chainId: number, who: string) { app.use(express.json()); app.use(cors()); +app.get('/api/health', async (req, res) => { + res.status(200).send('ok'); +}); app.post('/api/migrate', async (req, res) => { const x = req.headers['x-dmh'];