intake/cmd/action.go

17 lines
204 B
Go
Raw Normal View History

2025-01-21 16:42:59 +00:00
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)
}