(&self)
| 61 | |
| 62 | impl Command for OrgList { |
| 63 | fn run(&self) -> CliResult<()> { |
| 64 | let rt = tokio::runtime::Runtime::new().map_err(|e| { |
| 65 | CliError::Internal(anyhow::anyhow!("Failed to create async runtime: {e}")) |
| 66 | })?; |
| 67 | |
| 68 | rt.block_on(self.execute()) |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | impl OrgList { |