silly app

This commit is contained in:
counterweight 2023-08-02 19:15:21 +02:00
parent eaafbcd6cf
commit afe81af496
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C

View file

@ -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..."
)