added + rename
This commit is contained in:
parent
25439eab5b
commit
1e2f442781
2 changed files with 30 additions and 2 deletions
|
|
@ -1,22 +0,0 @@
|
|||
syntax = "proto3";
|
||||
import "google/protobuf/empty.proto";
|
||||
|
||||
package taskProcessor;
|
||||
option go_package = "./taskProcessor";
|
||||
|
||||
|
||||
message Task{
|
||||
string merch_uuid = 1;
|
||||
map<string, string> origins = 2;
|
||||
}
|
||||
|
||||
message Result{
|
||||
string merch_uuid = 1;
|
||||
string origin_name = 2;
|
||||
int32 price = 3;
|
||||
}
|
||||
|
||||
service TaskProcessor {
|
||||
rpc RequestTasks(google.protobuf.Empty) returns (stream Task);
|
||||
rpc SendResults(stream Result) returns (google.protobuf.Empty);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue