added + rename

This commit is contained in:
nquidox 2026-02-18 17:35:37 +03:00
parent 25439eab5b
commit 1e2f442781
2 changed files with 30 additions and 2 deletions

View file

@ -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);
}