mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-23 05:35:44 -05:00
12 lines
171 B
Python
12 lines
171 B
Python
from packages import cmd_packages
|
|
from cache import cmd_cache
|
|
import click
|
|
|
|
|
|
@click.group()
|
|
def cli():
|
|
pass
|
|
|
|
|
|
cli.add_command(cmd_cache)
|
|
cli.add_command(cmd_packages)
|