16 lines
298 B
Python
16 lines
298 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 generate_um_report(start_date: str, end_date: str):
|
|
controllers.generate_um_report(start_date, end_date)
|
|
|