import typer from status_client.status_client import main app = typer.Typer() # cfg = config.Config() @app.command() def check(): main() if __name__ == "__main__": app()