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()