"""
WSGI entry point for Namecheap shared hosting.

cPanel generates its own passenger_wsgi.py which calls load_source() on this file.
The 'application' variable is what Passenger binds to.
"""

import sys
import os

# Ensure the app root is on the path so imports resolve correctly
sys.path.insert(0, os.path.dirname(__file__))

from app import create_app

application = create_app()
