cli.CLIResult
cli.CLIResult(exit_code, stdout, stderr, command)Result of any CLI command execution.
Attributes
| Name | Type | Description |
|---|---|---|
| exit_code | int | Process exit code (0 = success). |
| stdout | str | Standard output from the command. |
| stderr | str | Standard error from the command. |
| command | list[str] | The command that was executed. |