status.py 183 B

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