diff --git a/camisatoshi_wordpress_reports/main.py b/camisatoshi_wordpress_reports/main.py new file mode 100644 index 0000000..bd066bf --- /dev/null +++ b/camisatoshi_wordpress_reports/main.py @@ -0,0 +1,11 @@ +import typer + + +app = typer.Typer() + + +@app.command() +def check_health(url: str): + print( + f"Ehem... Yeah... so... I've definitely checked {url}... I just don't remember clearly if it was alive or not..." + )