ccchatbot/mqtt/config.go

9 lines
176 B
Go

package mqtt
type Config struct {
Broker string `toml:"broker"`
ClientID string `toml:"client_id"`
Username string `toml:"username"`
Password string `toml:"password"`
}