| 3 | import "encoding/json" |
| 4 | |
| 5 | type Error struct { |
| 6 | Code string `json:"code"` |
| 7 | Message string `json:"message,omitempty"` |
| 8 | } |
| 9 | |
| 10 | type Result struct { |
| 11 | Result any `json:"result,omitempty"` |
nothing calls this directly
no outgoing calls
no test coverage detected