chore: add health check

This commit is contained in:
Nathan Lamy 2025-08-23 10:17:59 +02:00
parent 4820a7a793
commit 629f24811a

View file

@ -70,3 +70,7 @@ router
})
.prefix('/internals')
.use(middleware.internal())
router.get('/health', async () => {
return { status: 'ok' }
})