camisatoshi-wordpress-reports/camisatoshi_wordpress_reports/cli.py

16 lines
236 B
Python
Raw Normal View History

2023-08-02 19:15:21 +02:00
import typer
2023-08-02 19:26:58 +02:00
import camisatoshi_wordpress_reports.controllers as controllers
2023-08-02 19:15:21 +02:00
app = typer.Typer()
@app.command()
def check_health(url: str):
2023-08-02 19:26:58 +02:00
controllers.check_health(url)
@app.command()
def explode():
print("Pew bam boom")