mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
10 lines
140 B
Protocol Buffer
10 lines
140 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package grpc;
|
|
option go_package = ".;grpc";
|
|
|
|
message StreamMessageDataTask {
|
|
string task_id = 1;
|
|
string data = 2;
|
|
}
|