add test command to verify update functionality

This commit is contained in:
Joe Kaufeld 2022-07-29 11:45:38 -04:00
parent e4b2d984ad
commit 203bf6d598

View File

@ -33,6 +33,12 @@ def uuid4():
click.echo(uuid.uuid4())
@main.command()
def ping():
"""Pong!"""
click.echo("Pong!")
@main.command()
@click.argument("words", nargs=-1)
def beautify(words: list[str]):