8 lines
143 B
Go
8 lines
143 B
Go
package protocol
|
|
|
|
// Request is struct when used to communicate with WebSocket RPC
|
|
type Request struct {
|
|
Notification
|
|
ID int64 `json:"id"`
|
|
}
|