ccchatbot/mqtt/config.go

9 lines
176 B
Go
Raw Permalink Normal View History

2019-08-07 12:27:18 +02:00
package mqtt
type Config struct {
Broker string `toml:"broker"`
ClientID string `toml:"client_id"`
Username string `toml:"username"`
2019-08-07 12:51:28 +02:00
Password string `toml:"password"`
2019-08-07 12:27:18 +02:00
}