codenuk_backend_mine/services/ai-analysis-service/__init__.py
2025-11-13 09:07:54 +05:30

9 lines
302 B
Python

# Service initialization
# This file helps Python treat the directory as a package
# and can be used to set up any service-wide configurations
from .server import app # Import the FastAPI app
from .ai_analyze import analyze_repository # Import key functions
__all__ = ['app', 'analyze_repository']