(&self)
| 74 | |
| 75 | impl Command for OrgUpgrade { |
| 76 | fn run(&self) -> CliResult<()> { |
| 77 | let rt = tokio::runtime::Runtime::new().map_err(|e| { |
| 78 | CliError::Internal(anyhow::anyhow!("Failed to create async runtime: {e}")) |
| 79 | })?; |
| 80 | |
| 81 | rt.block_on(self.execute()) |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | impl OrgUpgrade { |