Spaces:
Sleeping
Sleeping
File size: 248 Bytes
6822466 | 1 2 3 4 5 6 7 8 9 | import sys
import os
# Add the parent directory to sys.path so Vercel can find the 'app' module
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from app.main import app
# This file simply imports the FastAPI instance
|