Skip to content

Commit

Permalink
feat(api): add get /v1/health route (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
duongdev committed Sep 21, 2024
1 parent 747dcd4 commit 256e0c8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions apps/api/v1/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 256e0c8

Please sign in to comment.