""" WSGI entry point for Code of Conquest. Used by production WSGI servers like Gunicorn. """ from app import create_app # Create application instance app = create_app() if __name__ == "__main__": # For development only # In production, use: gunicorn wsgi:app app.run(debug=True)