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()
|
2023-08-02 19:49:36 +02:00
|
|
|
def check_health():
|
|
|
|
|
controllers.check_health()
|
2023-08-02 19:20:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
@app.command()
|
2023-08-02 20:09:28 +02:00
|
|
|
def show_orders():
|
|
|
|
|
controllers.show_orders()
|
|
|
|
|
|