(&self)
| 54 | |
| 55 | impl Command for Sandbox { |
| 56 | fn run(&self) -> CliResult<()> { |
| 57 | match &self.command { |
| 58 | SandboxCommands::Create(cmd) => cmd.run(), |
| 59 | SandboxCommands::Stage(cmd) => cmd.run(), |
| 60 | SandboxCommands::Seal(cmd) => cmd.run(), |
| 61 | } |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | /// Create a sandbox working tree for an agent. |
nothing calls this directly
no test coverage detected