Skip to content

Commit

Permalink
Rename main.py to codegen.py
Browse files Browse the repository at this point in the history
Update the `generate` command to print "Generation process started"

Add a new `verify` command that prints "Verification complete"
  • Loading branch information
andreisavu committed Aug 23, 2024
1 parent 32d2997 commit 8e1fba0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion codegen.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

@click.command()
def generate():
click.echo("Starting the generation process...")
click.echo("Generation process started")

@click.command()
def verify():
click.echo("Verification complete")

if __name__ == "__main__":
generate()
verify()

0 comments on commit 8e1fba0

Please sign in to comment.