mqtt.go 216 B

123456789101112131415
  1. package cmd
  2. import (
  3. "kpt-pasture/dep"
  4. "github.com/spf13/cobra"
  5. )
  6. var MqttCmd = &cobra.Command{
  7. Use: "mqtt",
  8. Short: "mqtt server",
  9. Run: func(cmd *cobra.Command, args []string) {
  10. dep.DIMqttService()
  11. },
  12. }