makeshift/cmd/run.go

15 lines
238 B
Go

package cmd
import "github.com/spf13/cobra"
var runCmd = &cobra.Command{
Use: "run",
Short: "Run 'makeshift' locally with plugins",
Run: func(cmd *cobra.Command, args []string) {
},
}
func init() {
rootCmd.AddCommand(runCmd)
}