(&self)
| 69 | |
| 70 | impl Command for OrgCreate { |
| 71 | fn run(&self) -> CliResult<()> { |
| 72 | let rt = tokio::runtime::Runtime::new().map_err(|e| { |
| 73 | CliError::Internal(anyhow::anyhow!("Failed to create async runtime: {e}")) |
| 74 | })?; |
| 75 | |
| 76 | rt.block_on(self.execute()) |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | impl OrgCreate { |