Start starts the shell but does not wait for it to stop.
()
| 102 | |
| 103 | // Start starts the shell but does not wait for it to stop. |
| 104 | func (s *Shell) Start() { |
| 105 | s.prepareRun() |
| 106 | go s.run() |
| 107 | } |
| 108 | |
| 109 | // Run starts the shell and waits for it to stop. |
| 110 | func (s *Shell) Run() { |
nothing calls this directly
no test coverage detected