gouick/cmd/generateLauncher.go
2022-07-15 11:49:53 +00:00

25 lines
393 B
Go

/*
Copyright © 2022 NAME HERE <EMAIL ADDRESS>
*/
package cmd
import (
"fmt"
"github.com/spf13/cobra"
)
// launcherCmd represents the launcher command
var launcherCmd = &cobra.Command{
Use: "launcher",
Short: "Generate Launcher Bash script",
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("launcher called")
},
}
func init() {
generateCmd.AddCommand(launcherCmd)
}