Files
crawlab/backend/entity/rpc.go
2020-03-10 12:08:26 +08:00

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"`
}