Skip to content

Commit 02bb194

Browse files
committed
fix: lmao forgot to add it to index
1 parent 6612f52 commit 02bb194

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

apps/basket/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import { Elysia } from 'elysia';
44
import { logger } from './lib/logger';
55
import basketRouter from './routes/basket';
6+
import emailRouter from './routes/email';
67
import stripeRouter from './routes/stripe';
78
import './polyfills/compression';
89
// import { checkBotId } from "botid/server";
@@ -34,6 +35,7 @@ const app = new Elysia()
3435
.options('*', () => new Response(null, { status: 204 }))
3536
.use(basketRouter)
3637
.use(stripeRouter)
38+
.use(emailRouter)
3739
.get('/health', () => ({ status: 'ok', version: '1.0.0' }));
3840

3941
export default {

0 commit comments

Comments
 (0)