8 lines
228 B
Go
8 lines
228 B
Go
package sensorconfig
|
|
|
|
type Target struct {
|
|
Auth map[string]interface{} `json:"auth,omitempty"`
|
|
Connection *Connection `json:"connection,omitempty"`
|
|
Meta map[string]interface{} `json:"meta,omitempty"`
|
|
}
|