Files
cs249r_book/tinytorch/tito/commands/__init__.py
Vijay Janapa Reddi e7051671dc chore(tito): remove unused TestCommand and ExportCommand
These commands were never registered in main.py and have been replaced by:
- TestCommand → tito module test (ModuleTestCommand)
- ExportCommand → tito module export / tito dev export

Also removed unused import and variable in milestone.py.
2026-01-15 10:46:39 -05:00

31 lines
758 B
Python

"""
CLI Commands package.
Each command is implemented as a separate module with proper separation of concerns.
Commands are organized into logical groups: system, module, and package.
"""
from .base import BaseCommand
# Individual commands
from .nbgrader import NBGraderCommand
from .benchmark import BenchmarkCommand
from .community import CommunityCommand
# Command groups (with subcommands organized in subfolders)
from .system import SystemCommand
from .module import ModuleWorkflowCommand
from .package import PackageCommand
__all__ = [
'BaseCommand',
# Individual commands
'NBGraderCommand',
'BenchmarkCommand',
'CommunityCommand',
# Command groups
'SystemCommand',
'ModuleWorkflowCommand',
'PackageCommand',
]