"""
WSGI entry point untuk cPanel (Setup Python App)
cPanel memanggil: passenger_wsgi.py -> variable 'application'
Jangan hapus file ini.
"""
import sys
import os

# Pastikan folder project ada di sys.path (cPanel kadang butuh ini)
sys.path.insert(0, os.path.dirname(__file__))

from app import app as application

# Untuk kompatibilitas, beberapa cPanel juga cari 'app'
# application = app
