shadow/cmd/make.go

19 lines
262 B
Go
Raw Permalink Normal View History

/*
Copyright © 2024 Shane C. <shane@scaffoe.com>
*/
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)
}