rpc/protocol/json/server_notification.go
crusader 6aa5c1536d ing
2017-11-29 01:19:03 +09:00

11 lines
299 B
Go

package json
// clientRequest represents a JSON-RPC request sent by a client.
type serverNotification struct {
// A String containing the name of the method to be invoked.
Method string `json:"method"`
// Object to pass as request parameter to the method.
Params interface{} `json:"params"`
}