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>
8 lines
276 B
Python
8 lines
276 B
Python
"""
|
|
API client layer for Discord Bot v2.0
|
|
|
|
HTTP client for communicating with the database API.
|
|
"""
|
|
from .client import APIClient, get_api_client, get_global_client, cleanup_global_client
|
|
|
|
__all__ = ['APIClient', 'get_api_client', 'get_global_client', 'cleanup_global_client'] |