From 8e1fba032400a48a39fd8e4a0892a3cfd5bc454c Mon Sep 17 00:00:00 2001 From: Andrei Savu Date: Fri, 23 Aug 2024 11:56:58 -0700 Subject: [PATCH] Rename `main.py` to `codegen.py` Update the `generate` command to print "Generation process started" Add a new `verify` command that prints "Verification complete" --- codegen.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/codegen.py b/codegen.py index 3aafdcf..61158c9 100644 --- a/codegen.py +++ b/codegen.py @@ -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()