(&self)
| 81 | |
| 82 | impl Command for OrgUpdate { |
| 83 | fn run(&self) -> CliResult<()> { |
| 84 | let rt = tokio::runtime::Runtime::new().map_err(|e| { |
| 85 | CliError::Internal(anyhow::anyhow!("Failed to create async runtime: {e}")) |
| 86 | })?; |
| 87 | |
| 88 | rt.block_on(self.execute()) |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | impl OrgUpdate { |