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

9 lines
201 B
Go

package protocol
// Notification is struct when used to communicate with WebSocket RPC
type Notification struct {
Header
Method string `json:"method"`
Params []string `json:"params,omitempty"`
}