ccchatbot/mqtt/config.go

9 lines
177 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"`
Password string `toml:"passoword"`
}