Files
wingotil/cmd/win/root.go
2024-10-09 04:59:58 -05:00

20 lines
422 B
Go

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
}