mqtt.go 304 B

12345678910111213
  1. // Copyright 2019 github.com. All rights reserved.
  2. // Use of this source code is governed by gitbub.com.
  3. package parser
  4. import (
  5. "tower-monitor/config"
  6. "github.com/jaryhe/gopkgs/mqtt"
  7. )
  8. func MqttHandler(conf *config.Configure) {
  9. mqtt.Setup(conf.Mqtt.Addr, conf.Mqtt.Username, conf.Mqtt.Password)
  10. }