mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-23 05:35:44 -05:00
22 lines
452 B
Python
22 lines
452 B
Python
from packages import cmd_packages
|
|
from cache import cmd_cache
|
|
from image import cmd_image
|
|
from boot import cmd_boot
|
|
from flash import cmd_flash
|
|
from ssh import cmd_ssh
|
|
from forwarding import cmd_forwarding
|
|
import click
|
|
|
|
|
|
@click.group()
|
|
def cli():
|
|
pass
|
|
|
|
|
|
cli.add_command(cmd_cache)
|
|
cli.add_command(cmd_packages)
|
|
cli.add_command(cmd_image)
|
|
cli.add_command(cmd_boot)
|
|
cli.add_command(cmd_flash)
|
|
cli.add_command(cmd_ssh)
|
|
cli.add_command(cmd_forwarding)
|