24 lines
371 B
Go
24 lines
371 B
Go
package cmd
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var uploadCmd = &cobra.Command{
|
|
Use: "upload",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
},
|
|
}
|
|
|
|
var uploadProfileCmd = &cobra.Command{
|
|
Use: "profile",
|
|
}
|
|
|
|
var uploadPluginCmd = &cobra.Command{
|
|
Use: "plugin",
|
|
}
|
|
|
|
func init() {
|
|
|
|
uploadCmd.AddCommand(uploadProfileCmd, uploadPluginCmd)
|
|
rootCmd.AddCommand(uploadCmd)
|
|
}
|