diff --git a/apps/api/src/index.ts b/apps/api/src/index.ts index dd4274f..c3f75f8 100644 --- a/apps/api/src/index.ts +++ b/apps/api/src/index.ts @@ -49,7 +49,7 @@ const app = new Hono() return c.json({ error: err.message }, 500); }) .get('/health', (c) => c.json({ status: 'ok' })) - .post('/migrate', async (c) => { + .get('/migrate', async (c) => { try { const fs = await import('fs'); const pathMod = await import('path');