intake/cmd/action.go

17 lines
204 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var actionCmd = &cobra.Command{
Use: "action",
Short: "Manage and run source actions",
Long: `
`,
}
func init() {
rootCmd.AddCommand(actionCmd)
}