# -*- coding: utf-8 -*-
"""Point d'entrée pour Passenger (cPanel / o2switch)."""

import os
import sys

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

from app import app as application  # noqa: E402
