ccchatbot/mqtt/config.go
2019-08-07 12:51:28 +02:00

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