mirror of
https://github.com/packwiz/packwiz.git
synced 2025-11-19 01:24:32 +01:00
Add bash/powershell/zsh completions
Was this really necessary? No Are there more important things to implement? Yes Do I care? No
This commit is contained in:
16
utils/utils.go
Normal file
16
utils/utils.go
Normal file
@@ -0,0 +1,16 @@
|
||||
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)
|
||||
}
|
||||
Reference in New Issue
Block a user