mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-06 19:29:15 +08:00
9 lines
123 B
Go
9 lines
123 B
Go
package mqtt
|
|
|
|
// Client stores MQTT client data.
|
|
type Client struct {
|
|
ID string
|
|
Username string
|
|
Password []byte
|
|
}
|