15 lines
236 B
Python
15 lines
236 B
Python
import typer
|
|
|
|
import camisatoshi_wordpress_reports.controllers as controllers
|
|
|
|
app = typer.Typer()
|
|
|
|
|
|
@app.command()
|
|
def check_health(url: str):
|
|
controllers.check_health(url)
|
|
|
|
|
|
@app.command()
|
|
def explode():
|
|
print("Pew bam boom")
|