# -*- coding: utf-8 -*-
"""
Punct de intrare WSGI pentru Passenger (cPanel / Namecheap „Setup Python App").
In interfata aplicatiei Python: Application startup file = passenger_wsgi.py,
Application Entry point = application.
"""
import os
import sys

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

from app import app as application   # noqa: E402
