8 lines
181 B
Go
8 lines
181 B
Go
|
package device
|
||
|
|
||
|
type Device struct {
|
||
|
Id string `json:"id,omitempty"`
|
||
|
Name string `json:"name,omitempty"`
|
||
|
Keys map[string]string `json:"keys,omitempty"`
|
||
|
}
|