docs: update TODO.md and changelog for modular CLI milestone

This commit is contained in:
Joe Particle 2025-07-17 09:16:55 +00:00
parent 39e05be88a
commit b83fa060e2
54 changed files with 7696 additions and 99 deletions

View file

@ -0,0 +1,37 @@
"""
CLI commands for apt-ostree.
This package contains individual command implementations for the CLI.
"""
from . import status
from . import install
from . import upgrade
from . import uninstall
from . import rollback
from . import deploy
from . import rebase
from . import db
from . import kargs
from . import cleanup
from . import cancel
from . import initramfs
from . import usroverlay
__version__ = "1.0.0"
__all__ = [
'status',
'install',
'upgrade',
'uninstall',
'rollback',
'deploy',
'rebase',
'db',
'kargs',
'cleanup',
'cancel',
'initramfs',
'usroverlay'
]