Skip to content
Snippets Groups Projects
Commit 171fee55 authored by Peter Hartman's avatar Peter Hartman
Browse files

Modified @click.group

Added @cli.commands
parent 928d923e
No related branches found
No related tags found
No related merge requests found
......@@ -18,11 +18,25 @@
import click
@click.command()
def validate():
@click.group()
def cli():
pass
@cli.command()
def report():
pass
@cli.command()
def add_base():
pass
@cli.command()
def add_project():
pass
@click.
if __name__ == '__main__':
validate()
\ No newline at end of file
cli()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment