import sys
import os

# Append current directory to system path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))

# Import the native Flask application instance
from main import app as application