WSMessage is the message structure for the WebSocket.
| 4 | |
| 5 | // WSMessage is the message structure for the WebSocket. |
| 6 | type WSMessage struct { |
| 7 | Type string `json:"type"` |
| 8 | Data any `json:"data"` |
| 9 | } |
| 10 | |
| 11 | type WSDriverMessage struct { |
| 12 | Type string `json:"type"` |
nothing calls this directly
no outgoing calls
no test coverage detected