chroot: move __init__.py to cli.py

This commit is contained in:
InsanePrawn 2022-10-08 02:45:43 +02:00
parent 827550e972
commit 6569fee6a2
2 changed files with 1 additions and 4 deletions

View file

@ -9,9 +9,6 @@ from .abstract import Chroot
from .base import get_base_chroot
from .build import get_build_chroot, BuildChroot
# export Chroot class
Chroot = Chroot
CHROOT_TYPES = ['base', 'build', 'rootfs']

View file

@ -14,7 +14,7 @@ from packages.cli import cmd_packages
from devices.cli import cmd_devices
from packages.flavour import cmd_flavours
from telnet import cmd_telnet
from chroot import cmd_chroot
from chroot.cli import cmd_chroot
from cache import cmd_cache
from image import cmd_image
from boot import cmd_boot