Files
ai-workflow-skill/internal/cli/orch/run.go
T
2026-03-19 02:55:41 +08:00

21 lines
358 B
Go

package orch
import "github.com/spf13/cobra"
func newRunCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "run",
Short: "Run management commands",
}
cmd.AddCommand(&cobra.Command{
Use: "init",
Short: "Stub for future run initialization",
RunE: func(cmd *cobra.Command, args []string) error {
return cmd.Help()
},
})
return cmd
}