Skip to content

Commit afbc67a

Browse files
committed
feat: custom-sql
1 parent 78b5069 commit afbc67a

File tree

4 files changed

+784
-0
lines changed

4 files changed

+784
-0
lines changed

apps/api/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { autumnHandler } from 'autumn-js/elysia';
77
import { Elysia } from 'elysia';
88
import { logger } from './lib/logger';
99
import { assistant } from './routes/assistant';
10+
import { customSQL } from './routes/custom-sql';
1011
import { exportRoute } from './routes/export';
1112
import { health } from './routes/health';
1213
import { query } from './routes/query';
@@ -42,6 +43,7 @@ const app = new Elysia()
4243
})
4344
)
4445
.use(query)
46+
.use(customSQL)
4547
.use(assistant)
4648
.use(exportRoute)
4749
.all('/trpc/*', ({ request }) => {

0 commit comments

Comments
 (0)