ccchatbot/mqtt/config.go

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