From afe81af496a66b867b293e2df062753614bf9cf2 Mon Sep 17 00:00:00 2001 From: counterweight Date: Wed, 2 Aug 2023 19:15:21 +0200 Subject: [PATCH] silly app --- camisatoshi_wordpress_reports/main.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 camisatoshi_wordpress_reports/main.py 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..." + )