Initial commit

This commit is contained in:
jld3103 2021-08-04 18:36:37 +02:00
commit f9ba5a3cfd
14 changed files with 889 additions and 0 deletions

12
main.py Normal file
View 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)