(&self)
| 64 | |
| 65 | impl Command for Session { |
| 66 | fn run(&self) -> CliResult<()> { |
| 67 | match &self.command { |
| 68 | SessionCommands::Show(show) => show.run(), |
| 69 | SessionCommands::Fork(fork) => fork.run(), |
| 70 | SessionCommands::Rebuild(rebuild) => rebuild.run(), |
| 71 | } |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | impl Command for SessionFork { |
nothing calls this directly
no test coverage detected