"""cPanel Python App startup file. Import from lp_wsgi, never from `wsgi`."""
import os
import sys

HERE = os.path.dirname(os.path.abspath(__file__))
if HERE not in sys.path:
    sys.path.insert(0, HERE)

from lp_wsgi import application  # noqa: E402
