9 lines
177 B
Go
9 lines
177 B
Go
|
package mqtt
|
||
|
|
||
|
type Config struct {
|
||
|
Broker string `toml:"broker"`
|
||
|
ClientID string `toml:"client_id"`
|
||
|
Username string `toml:"username"`
|
||
|
Password string `toml:"passoword"`
|
||
|
}
|