CLI interactivity (#13148)

Will implement more later
pull/13359/head
Erick Friis 11 months ago committed by GitHub
parent 2f6fe6ddf3
commit 927824b7cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -35,7 +35,13 @@ app_cli = typer.Typer(no_args_is_help=True, add_completion=False)
@app_cli.command()
def new(
name: Annotated[str, typer.Argument(help="The name of the folder to create")],
name: Annotated[
str,
typer.Option(
help="The name of the folder to create",
prompt="What folder would you like to create?",
),
],
*,
package: Annotated[
Optional[List[str]],

Loading…
Cancel
Save