crusader@loafle.com abaf9c217a WebSocket client
2017-08-10 16:39:58 +09:00

10 lines
228 B
Go

package protocol
// Response is struct when used to communicate with WebSocket RPC
type Response struct {
Header
Result *string `json:"result,omitempty"`
Error *Error `json:"error,omitempty"`
ID int64 `json:"id"`
}