Files
TinyTorch/tito/commands/dev/__init__.py
Vijay Janapa Reddi 2c5ef2e3cf Fix tagline consistency: Don't import it. Build it.
- Remove 'just' from all instances of the tagline
- Update banner to lead with tagline
- Consistent branding across docs, CLI, and demos
2025-12-02 21:17:41 -05:00

8 lines
165 B
Python

"""Developer command group for TinyTorch CLI."""
from .dev import DevCommand
from .preflight import PreflightCommand
__all__ = ['DevCommand', 'PreflightCommand']