status.py 200 B

123456789101112131415
  1. import typer
  2. from status_client.status_client import system_check
  3. app = typer.Typer()
  4. # cfg = config.Config()
  5. @app.command()
  6. def check():
  7. system_check()
  8. if __name__ == "__main__":
  9. app()