image: create new module from {image,boot,fastboot,flash}.py

This commit is contained in:
InsanePrawn 2022-10-16 23:25:47 +02:00
parent afca099ede
commit 50bcd0de63
9 changed files with 18 additions and 16 deletions

6
image/cli.py Normal file
View file

@ -0,0 +1,6 @@
from .boot import cmd_boot
from .flash import cmd_flash
from .image import cmd_image
for cmd in [cmd_boot, cmd_flash]:
cmd_image.add_command(cmd)