Files
PandaX/pkg/config/mqtt.go
2023-08-22 15:17:14 +08:00

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"`
}