working get request

This commit is contained in:
filipriec
2025-02-21 22:10:48 +01:00
parent 8a747db7c4
commit 577492b03c
6 changed files with 86 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ import "adresar.proto";
service Uctovnictvo {
rpc PostUctovnictvo (PostUctovnictvoRequest) returns (UctovnictvoResponse);
rpc GetUctovnictvo (GetUctovnictvoRequest) returns (UctovnictvoResponse);
}
message PostUctovnictvoRequest {
@@ -37,3 +38,7 @@ message UctovnictvoResponse {
string poznanka = 11;
string firma = 12;
}
message GetUctovnictvoRequest {
int64 id = 1;
}