MCPcopy Create free account
hub / github.com/GongShichen/LuminaCode / StartBackground

Method StartBackground

tools/bash/background.go:120–124  ·  view source on GitHub ↗
(
	command, description, cwd string,
	timeout time.Duration)

Source from the content-addressed store, hash-verified

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