| 108 | } |
| 109 | |
| 110 | type SenML struct { |
| 111 | XMLName *bool `json:"_,omitempty" xml:"sensml"` |
| 112 | Xmlns string `json:"_,omitempty" xml:"xmlns,attr"` |
| 113 | |
| 114 | Records []SenMLRecord ` xml:"senml"` |
| 115 | } |
| 116 | |
| 117 | func (records SenML) toRecords() []map[int]interface{} { |
| 118 | var ret []map[int]interface{} |
nothing calls this directly
no outgoing calls
no test coverage detected