11 lines
213 B
Go
11 lines
213 B
Go
|
package protocol
|
||
|
|
||
|
import "encoding/json"
|
||
|
|
||
|
type Response struct {
|
||
|
Header
|
||
|
ID uint64 `json:"id"`
|
||
|
Result *json.RawMessage `json:"result,omitempty"`
|
||
|
Error *ProtocolError `json:"error,omitempty"`
|
||
|
}
|