/* Copyright © 2024 Shane C. */ package cmd import ( "github.com/spf13/cobra" ) // makeCmd represents the make command var makeCmd = &cobra.Command{ Use: "make", Short: "Makes things.", } func init() { rootCmd.AddCommand(makeCmd) }