package cmd import ( "kpt-pasture/dep" "github.com/spf13/cobra" ) var MqttCmd = &cobra.Command{ Use: "mqtt", Short: "mqtt server", Run: func(cmd *cobra.Command, args []string) { dep.DIMqttService() }, }