placeholder config cmd added

This commit is contained in:
2023-05-26 19:24:42 -07:00
parent 15cbf5c0a0
commit a4a3f1f332

21
cmd/mg/cmd/config.go Normal file
View File

@@ -0,0 +1,21 @@
package cmd
import (
"fmt"
"github.com/spf13/cobra"
)
// configCmd represents the config command
var configCmd = &cobra.Command{
Use: "config",
Short: "",
Long: ``,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("config called")
},
}
func init() {
rootCmd.AddCommand(configCmd)
}