MCPcopy Create free account
hub / github.com/compozy/agh / requiredTaskID

Function requiredTaskID

internal/cli/task.go:2937–2943  ·  view source on GitHub ↗
(rawTaskID string)

Source from the content-addressed store, hash-verified

2935}
2936
2937func requiredTaskID(rawTaskID string) (string, error) {
2938 taskID := strings.TrimSpace(rawTaskID)
2939 if taskID == "" {
2940 return "", errors.New("cli: task id is required")
2941 }
2942 return taskID, nil
2943}
2944
2945func requiredTaskRunIDs(rawRunIDs []string) ([]string, error) {
2946 if len(rawRunIDs) == 0 {

Callers 2

newTaskPauseCommandFunction · 0.85
newTaskResumeCommandFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected