chetantiwari commited on
Commit
658a5c2
·
1 Parent(s): fa546a7
Files changed (1) hide show
  1. api/index.py +5 -0
api/index.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ from app.main import app
2
+
3
+ # This is the entry point for Vercel
4
+ def handler(event, context):
5
+ return app(event, context)