import sys
import os

# Thêm thư mục hiện tại vào Python path
sys.path.insert(0, os.path.dirname(__file__))

# Import Flask app
from web_mail_app import app as application

# Đây là WSGI application cho Passenger
wsgi = application
