import os
import sys

# Get the directory of your Flask app
sys.path.insert(0, os.path.dirname(__file__))

# Import the Flask app object from your main file (app.py)
from app import app as application