(&self)
| 92 | |
| 93 | impl Command for TeamCreate { |
| 94 | fn run(&self) -> CliResult<()> { |
| 95 | let rt = tokio::runtime::Runtime::new().map_err(|e| { |
| 96 | CliError::Internal(anyhow::anyhow!("Failed to create async runtime: {e}")) |
| 97 | })?; |
| 98 | |
| 99 | rt.block_on(self.execute()) |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | impl TeamCreate { |