Description
The \�utoTriage/services/init.py\ file is empty. For better module organization and explicit exports, it should define an _all_\ list that exports the public service classes.
Location
- File: \�utoTriage/services/init.py\
Expected Fix
Add an _all_\ list that exports the main service classes:
- \CopilotService\
- \GitHubService\
- \LLMService\
- \PromptLoader\
Example
\\python
all = [
'CopilotService',
'GitHubService',
'LLMService',
'PromptLoader',
]
\\
Additional Context
This is a simple Python best practice fix - no domain knowledge required.