Petbot/modules/__init__.py
megaproxy 8ae7da8379 Update module loading and rate limiting for healing system integration
- Add heal command to rate limiting system for proper cooldown enforcement
- Update module initialization to support new healing system components
- Ensure rate limiting properly handles new heal command with user restrictions
- Maintain system security and prevent healing system abuse
- Clean up deprecated connection and backup commands from rate limiter

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-16 11:33:23 +00:00

26 lines
No EOL
627 B
Python

#!/usr/bin/env python3
"""PetBot modules package"""
from .core_commands import CoreCommands
from .exploration import Exploration
from .battle_system import BattleSystem
from .pet_management import PetManagement
from .achievements import Achievements
from .admin import Admin
from .inventory import Inventory
from .gym_battles import GymBattles
from .team_builder import TeamBuilder
from .npc_events import NPCEventsModule
__all__ = [
'CoreCommands',
'Exploration',
'BattleSystem',
'PetManagement',
'Achievements',
'Admin',
'Inventory',
'GymBattles',
'TeamBuilder',
'NPCEventsModule'
]