16 lines
234 B
Python
16 lines
234 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 show_orders():
|
|
controllers.show_orders()
|
|
|