(callID: string, command: string)
| 688 | } |
| 689 | |
| 690 | function startShell(callID: string, command: string): SessionCommit { |
| 691 | return shellCommit( |
| 692 | { |
| 693 | callID, |
| 694 | command, |
| 695 | }, |
| 696 | { |
| 697 | text: "running shell", |
| 698 | phase: "start", |
| 699 | toolState: "running", |
| 700 | }, |
| 701 | ) |
| 702 | } |
| 703 | |
| 704 | function doneShell(callID: string, command: string, output: string): SessionCommit { |
| 705 | return shellCommit( |
no test coverage detected