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