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

Struct BackgroundTask

tools/bash/background.go:27–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25
26type BackgroundTask struct {
27 TaskID string `json:"task_id"`
28 Command string `json:"command"`
29 Description string `json:"description"`
30 OutputPath string `json:"output_path"`
31 ErrorPath string `json:"error_path"`
32 Status string `json:"status"`
33 ExitCode *int `json:"exit_code"`
34 StartTime float64 `json:"start_time"`
35 EndTime *float64 `json:"end_time"`
36}
37
38type RunningTask struct {
39 Cmd *exec.Cmd
40 Cancel context.CancelFunc

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected