# passenger_wsgi.py
import sys
import os

# Add the current directory to Python path
sys.path.insert(0, os.path.dirname(__file__))

# Import your FastAPI app (from main.py)
from main import app

# Passenger expects 'application' variable
application = app