"""
passenger_wsgi.py

Required entry point for cPanel's "Setup Python App" feature (which uses
Phusion Passenger under the hood). cPanel looks for this exact filename
and an `application` object inside it — this is boilerplate, not
something to edit, unless your Flask app object in app.py is renamed.
"""
import sys
import os

sys.path.insert(0, os.path.dirname(__file__))

from app import app as application
