Get the logs of a deployment.
(uuid: str | None)
| 631 | @deploy.command(name="logs") |
| 632 | @click.option("-u", "--uuid", type=str, help="Crew UUID parameter") |
| 633 | def deploy_logs(uuid: str | None) -> None: |
| 634 | """Get the logs of a deployment.""" |
| 635 | deploy_cmd = DeployCommand() |
| 636 | deploy_cmd.get_crew_logs(uuid=uuid) |
| 637 | |
| 638 | |
| 639 | @deploy.command(name="remove") |
nothing calls this directly
no test coverage detected
searching dependent graphs…