"""
WSGI entry point for cPanel Passenger.
Flask is natively WSGI — no bridge needed.
"""
import sys
import os

app_dir = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, app_dir)

from app import app as application
