camisatoshi-wordpress-reports/camisatoshi_wordpress_reports/main.py
2023-08-02 19:15:21 +02:00

11 lines
219 B
Python

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