mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
12 lines
431 B
Go
12 lines
431 B
Go
package entity
|
|
|
|
type RpcMessage struct {
|
|
Id string `json:"id"` // 消息ID
|
|
Method string `json:"method"` // 消息方法
|
|
NodeId string `json:"node_id"` // 节点ID
|
|
Params map[string]string `json:"params"` // 参数
|
|
Timeout int `json:"timeout"` // 超时
|
|
Result string `json:"result"` // 结果
|
|
Error string `json:"error"` // 错误
|
|
}
|