Create or update data/user/settings for this workspace.
(
cli: bool = typer.Option(False, "--cli", help="Initialize for CLI-only use."),
home: Path | None = typer.Option(None, "--home", help="Runtime workspace root."),
)
| 509 | def register(app: typer.Typer) -> None: |
| 510 | @app.command("init") |
| 511 | def init_command( |
| 512 | cli: bool = typer.Option(False, "--cli", help="Initialize for CLI-only use."), |
| 513 | home: Path | None = typer.Option(None, "--home", help="Runtime workspace root."), |
| 514 | ) -> None: |
| 515 | """Create or update data/user/settings for this workspace.""" |
| 516 | |
| 517 | run_init(cli_only=cli, home=home) |
nothing calls this directly
no test coverage detected