price type change

This commit is contained in:
nquidox 2025-10-03 19:14:13 +03:00
parent 6867d2d74e
commit e4f55bb195
3 changed files with 6 additions and 6 deletions

View file

@ -14,7 +14,7 @@ message Task{
message Result{
string merch_uuid = 1;
string origin_name = 2;
uint32 price = 3;
int32 price = 3;
}
message ProcessorStatusRequest{}
@ -38,4 +38,4 @@ service TaskProcessor {
rpc RequestTask(google.protobuf.Empty) returns (stream Task);
rpc SendResult(stream Result) returns (google.protobuf.Empty);
rpc ProcessorStatus(ProcessorStatusRequest) returns (ProcessorStatusResponse);
}
}