not working, basic structure with grpc
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package my_service;
|
||||
|
||||
service MyService {
|
||||
rpc MyMethod (MyRequest) returns (MyResponse);
|
||||
}
|
||||
|
||||
message MyRequest {
|
||||
int32 id = 1;
|
||||
}
|
||||
|
||||
message MyResponse {
|
||||
string message = 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user