19 lines
273 B
Go
19 lines
273 B
Go
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)
|
|
}
|