ccchatbot/mqtt/config.go

9 lines
176 B
Go
Raw Normal View History

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