29 lines
1000 B
Python
29 lines
1000 B
Python
"""
|
|
Helpers Package
|
|
|
|
This package contains all helper modules for the Paper Dynasty Discord Bot.
|
|
The package is organized into logical modules for better maintainability.
|
|
|
|
Modules:
|
|
- constants: Application constants and configuration
|
|
- utils: General utility functions
|
|
- random_content: Random content generators
|
|
- search_utils: Search and fuzzy matching functionality
|
|
- discord_utils: Discord helper functions
|
|
- cards: Card display and pagination functions (future)
|
|
- packs: Pack opening and management (future)
|
|
- sheets: Google Sheets operations (future)
|
|
- teams: Team-related utilities (future)
|
|
- players: Player-related utilities (future)
|
|
"""
|
|
|
|
# Import all functions from the original helpers.py to maintain backward compatibility
|
|
# This allows existing code to continue working during the migration
|
|
from helpers.main import *
|
|
|
|
# Import from migrated modules
|
|
from .constants import *
|
|
from .utils import *
|
|
from .random_content import *
|
|
from .search_utils import *
|
|
from .discord_utils import * |