mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
17 lines
280 B
Protocol Buffer
17 lines
280 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "entity/stream_message_code.proto";
|
|
|
|
package grpc;
|
|
option go_package = ".;grpc";
|
|
|
|
message StreamMessage {
|
|
StreamMessageCode code = 1;
|
|
string node_key = 2;
|
|
string key = 3;
|
|
string from = 4;
|
|
string to = 5;
|
|
bytes data = 6;
|
|
string error = 7;
|
|
}
|