Initial commit
This commit is contained in:
commit
f9ba5a3cfd
14 changed files with 889 additions and 0 deletions
12
main.py
Normal file
12
main.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
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)
|
Loading…
Add table
Add a link
Reference in a new issue