camisatoshi-wordpress-reports/camisatoshi_wordpress_reports/main.py

12 lines
219 B
Python
Raw Normal View History

2023-08-02 19:15:21 +02:00
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..."
)