Initial commit
This commit is contained in:
19
cmd/win/root.go
Normal file
19
cmd/win/root.go
Normal file
@@ -0,0 +1,19 @@
|
||||
package win
|
||||
|
||||
import (
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
var rootCmd = &cobra.Command{
|
||||
Use: "wingoutil",
|
||||
Short: "DeveloperDurp's Windows Utility - Install Programs, Tweaks, Fixes, and Updates",
|
||||
Long: `DeveloperDurp's Windows Utility - Install Programs, Tweaks, Fixes, and Updates (Inspired by Chris Titus Tech's winutil)`,
|
||||
}
|
||||
|
||||
func Execute() error {
|
||||
err := rootCmd.Execute()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user