9 lines
302 B
Python
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']
|