(&self)
| 98 | |
| 99 | impl Command for TeamUpdate { |
| 100 | fn run(&self) -> CliResult<()> { |
| 101 | let rt = tokio::runtime::Runtime::new().map_err(|e| { |
| 102 | CliError::Internal(anyhow::anyhow!("Failed to create async runtime: {e}")) |
| 103 | })?; |
| 104 | |
| 105 | rt.block_on(self.execute()) |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | impl TeamUpdate { |