From 35b97846e478a5c69e95003584bf6b76211cb5ee Mon Sep 17 00:00:00 2001 From: leeyj Date: Mon, 23 Mar 2026 01:22:03 +0900 Subject: [PATCH] diagnostics: add module loading info --- app.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app.py b/app.py index 37641e4..6ce2189 100644 --- a/app.py +++ b/app.py @@ -17,8 +17,15 @@ def create_app(): app.register_blueprint(main_bp) app.register_blueprint(api_bp) + # Diagnostic: Check if loaded from source or binary + import routes.api_routes as ar + import logic.license_manager as lm + print(f"[*] API Routes Loaded From: {ar.__file__}") + print(f"[*] License Manager Loaded From: {lm.__file__}") + return app + if __name__ == '__main__': app = create_app()