camisatoshi-wordpress-reports/camisatoshi_wordpress_reports/cli.py
2023-08-02 19:49:36 +02:00

15 lines
225 B
Python

import typer
import camisatoshi_wordpress_reports.controllers as controllers
app = typer.Typer()
@app.command()
def check_health():
controllers.check_health()
@app.command()
def explode():
print("Pew bam boom")