mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-05-05 01:53:03 -05:00
- Remove 'just' from all instances of the tagline - Update banner to lead with tagline - Consistent branding across docs, CLI, and demos
8 lines
165 B
Python
8 lines
165 B
Python
"""Developer command group for TinyTorch CLI."""
|
|
|
|
from .dev import DevCommand
|
|
from .preflight import PreflightCommand
|
|
|
|
__all__ = ['DevCommand', 'PreflightCommand']
|
|
|