Implement secure team builder with PIN verification system

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
megaproxy 2025-07-14 17:08:02 +01:00
parent 3098be7f36
commit 9cf2231a03
6 changed files with 476 additions and 16 deletions

View file

@ -9,6 +9,7 @@ from .achievements import Achievements
from .admin import Admin
from .inventory import Inventory
from .gym_battles import GymBattles
from .team_builder import TeamBuilder
__all__ = [
'CoreCommands',
@ -18,5 +19,6 @@ __all__ = [
'Achievements',
'Admin',
'Inventory',
'GymBattles'
'GymBattles',
'TeamBuilder'
]