mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 10:58:35 +08:00
9 lines
316 B
Go
9 lines
316 B
Go
package config
|
|
|
|
type Mqtt struct {
|
|
Broker string `mapstructure:"broker" json:"broker" yaml:"broker"`
|
|
Qos int `mapstructure:"qos" json:"qos" yaml:"qos"`
|
|
Username string `mapstructure:"username" json:"username" yaml:"username"`
|
|
Password string `mapstructure:"password" json:"password" yaml:"password"`
|
|
}
|