( command, description, cwd string, timeout time.Duration)
| 118 | } |
| 119 | return result |
| 120 | } |
| 121 | |
| 122 | func (m *BackgroundManager) StartBackground( |
| 123 | command, description, cwd string, |
| 124 | timeout time.Duration) (*BackgroundTask, error) { |
| 125 | return m.StartBackgroundWithOptionalTimeout(command, description, cwd, &timeout) |
| 126 | } |
| 127 |