preparing enw version with deploy

This commit is contained in:
João Moura
2024-09-07 11:17:12 -07:00
parent a9916940ef
commit bc793749a5
7 changed files with 21 additions and 16 deletions

View File

@@ -203,10 +203,11 @@ def deploy():
@deploy.command(name="create")
def deploy_create():
@click.option("-y", "--yes", is_flag=True, help="Skip the confirmation prompt")
def deploy_create(yes: bool):
"""Create a Crew deployment."""
deploy_cmd = DeployCommand()
deploy_cmd.create_crew()
deploy_cmd.create_crew(yes)
@deploy.command(name="list")