Complete rebuild of the Discord bot with modern architecture including: - Modular API client with proper error handling - Clean separation of models, services, and commands - Comprehensive test coverage with pytest - Structured logging and configuration management - Organized command structure for scalability 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
408 B
Python
16 lines
408 B
Python
"""
|
|
Business logic services for Discord Bot v2.0
|
|
|
|
Service layer providing clean interfaces to data operations.
|
|
"""
|
|
|
|
from .team_service import TeamService, team_service
|
|
from .player_service import PlayerService, player_service
|
|
|
|
# Wire services together for dependency injection
|
|
player_service._team_service = team_service
|
|
|
|
__all__ = [
|
|
'TeamService', 'team_service',
|
|
'PlayerService', 'player_service'
|
|
] |