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