mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-23 13:45:45 -05:00
7 lines
151 B
Python
7 lines
151 B
Python
|
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)
|