packwiz/utils/utils.go
comp500 7ecf2cd215 Add bash/powershell/zsh completions
Was this really necessary? No
Are there more important things to implement? Yes
Do I care? No
2019-09-18 22:58:46 +01:00

17 lines
298 B
Go

package utils
import (
"github.com/comp500/packwiz/cmd"
"github.com/spf13/cobra"
)
// utilsCmd represents the base command when called without any subcommands
var utilsCmd = &cobra.Command{
Use: "utils",
Short: "Utilities for managing packwiz itself",
}
func init() {
cmd.Add(utilsCmd)
}