19 lines
262 B
Go
19 lines
262 B
Go
|
/*
|
||
|
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)
|
||
|
}
|