Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2024-12-11 02:00:29 +03:00
parent e7e1ff15f4
commit 1aa324c17f
63 changed files with 2488 additions and 1165 deletions

View File

@@ -0,0 +1,13 @@
syntax = "proto3";
package main;
import "google/protobuf/empty.proto";
service TestService {
rpc DoWork (google.protobuf.Empty) returns (WorkResponse);
}
message WorkResponse {
string message = 1;
}