initial
This commit is contained in:
commit
25439eab5b
10 changed files with 185 additions and 0 deletions
22
proto/task.proto
Normal file
22
proto/task.proto
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
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