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>
23 lines
486 B
Python
23 lines
486 B
Python
"""
|
|
Data models for Discord Bot v2.0
|
|
|
|
Clean Pydantic models with proper validation and type safety.
|
|
"""
|
|
|
|
from models.base import SBABaseModel
|
|
from models.team import Team
|
|
from models.player import Player
|
|
from models.current import Current
|
|
from models.draft_pick import DraftPick
|
|
from models.draft_data import DraftData
|
|
from models.draft_list import DraftList
|
|
|
|
__all__ = [
|
|
'SBABaseModel',
|
|
'Team',
|
|
'Player',
|
|
'Current',
|
|
'DraftPick',
|
|
'DraftData',
|
|
'DraftList',
|
|
] |