| 188 | } |
| 189 | |
| 190 | pub struct BashToolView { |
| 191 | pub command: String, |
| 192 | pub output: Option<String>, |
| 193 | pub exit_code: Option<i32>, |
| 194 | pub running: bool, |
| 195 | } |
| 196 | |
| 197 | impl BashToolView { |
| 198 | pub fn new(command: String) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected