makeshift/cmd/run.go

15 lines
230 B
Go

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