major-domo-v2/services/__init__.py
Cal Corum 620fa0ef2d CLAUDE: Initial commit for discord-app-v2 rebuild
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>
2025-08-15 00:04:50 -05:00

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'
]