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