8 lines
137 B
Go
8 lines
137 B
Go
|
package protocol
|
||
|
|
||
|
type Notification struct {
|
||
|
Header
|
||
|
Method string `json:"method"`
|
||
|
Params interface{} `json:"params,omitempty"`
|
||
|
}
|