Files
services/helloworld/proto/helloworld.proto
Asim Aslam 61fe9c169b One
2020-10-02 11:13:01 +01:00

16 lines
183 B
Protocol Buffer

syntax = "proto3";
package helloworld;
service Helloworld {
rpc Call(Request) returns (Response) {}
}
message Request {
string name = 1;
}
message Response {
string msg = 1;
}