mqtt.go 305 B

12345678
  1. package config
  2. type Mqtt struct {
  3. Server string `mapstructure:"server" json:"server" yaml:"server"`
  4. Id string `mapstructure:"id" json:"id" yaml:"id"`
  5. User string `mapstructure:"user" json:"user" yaml:"user"`
  6. Password string `mapstructure:"password" json:"password" yaml:"password"`
  7. }