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

Function newTaskDependencyCommand

internal/cli/task.go:2276–2287  ·  view source on GitHub ↗
(deps commandDeps)

Source from the content-addressed store, hash-verified

2274}
2275
2276func newTaskDependencyCommand(deps commandDeps) *cobra.Command {
2277 cmd := &cobra.Command{
2278 Use: "dependency",
2279 Short: "Manage task dependencies",
2280 RunE: func(cmd *cobra.Command, _ []string) error {
2281 return cmd.Help()
2282 },
2283 }
2284 cmd.AddCommand(newTaskDependencyAddCommand(deps))
2285 cmd.AddCommand(newTaskDependencyRemoveCommand(deps))
2286 return cmd
2287}
2288
2289func newTaskDependencyAddCommand(deps commandDeps) *cobra.Command {
2290 var (

Callers 1

newTaskCommandFunction · 0.85

Calls 2

Tested by

no test coverage detected