func Execute()

in cmd/root.go [25:34]


func Execute() {
	err := rootCmd.Execute()
	if err != nil {
		var pe *exec.ExitError
		if errors.As(err, &pe) {
			os.Exit(pe.ExitCode())
		}
		os.Exit(1)
	}
}