10 lines
172 B
Go
10 lines
172 B
Go
|
package iot
|
||
|
|
||
|
type DeviceConfig struct {
|
||
|
Id string
|
||
|
Password string
|
||
|
Servers string
|
||
|
Qos byte
|
||
|
BatchSubDeviceSize int
|
||
|
}
|