package cmd import ( "git.towk2.me/towk/configurator/pkg/util" "github.com/spf13/cobra" ) var downloadCmd = cobra.Command{ Use: "download", Run: func(cmd *cobra.Command, args []string) { util.MakeRequest() }, } func init() { rootCmd.AddCommand(&downloadCmd) }