| 142 | } |
| 143 | |
| 144 | type driverMessage struct { |
| 145 | Type string `json:"type"` |
| 146 | Data json.RawMessage `json:"data"` |
| 147 | } |
| 148 | |
| 149 | var driverMsg driverMessage |
| 150 | if err := json.Unmarshal(message, &driverMsg); err != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected