diff --git a/apps/api/v1/index.ts b/apps/api/v1/index.ts index 235f12a8..30bc8cc4 100644 --- a/apps/api/v1/index.ts +++ b/apps/api/v1/index.ts @@ -10,6 +10,7 @@ import usersApp from './routes/users' import walletsApp from './routes/wallets' export const hono = new Hono() + .get('/health', (c) => c.text('ok')) .route('/webhooks/clerk', clerkWebhooksApp) .use('*', authMiddleware)