23 lines
346 B
Go
23 lines
346 B
Go
package cmd
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var actionExecuteCmd = &cobra.Command{
|
|
Use: "execute",
|
|
Aliases: []string{"exec"},
|
|
Short: "Run a source action for an item",
|
|
Long: `
|
|
`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
log.Fatal("not implemented")
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
actionCmd.AddCommand(actionExecuteCmd)
|
|
}
|