Commit
·
658a5c2
1
Parent(s):
fa546a7
commit
Browse files- 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)
|