docs: update TODO.md and changelog for modular CLI milestone
This commit is contained in:
parent
39e05be88a
commit
b83fa060e2
54 changed files with 7696 additions and 99 deletions
37
src/apt-ostree.py/client/commands/__init__.py
Normal file
37
src/apt-ostree.py/client/commands/__init__.py
Normal 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'
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue