mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
12 lines
341 B
Go
12 lines
341 B
Go
package entity
|
|
|
|
type RpcMessage struct {
|
|
Id string `json:"id"`
|
|
Method string `json:"method"`
|
|
NodeId string `json:"node_id"`
|
|
Params map[string]string `json:"params"`
|
|
Timeout int `json:"timeout"`
|
|
Result string `json:"result"`
|
|
Error string `json:"error"`
|
|
}
|