1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-30 08:06:40 +02:00
go-micro/server/grpc/proto/test.proto

14 lines
156 B
Protocol Buffer
Raw Normal View History

2019-06-03 19:44:43 +02:00
syntax = "proto3";
2019-06-05 11:22:28 +02:00
service Test {
rpc Call(Request) returns (Response) {}
2019-06-03 19:44:43 +02:00
}
message Request {
string name = 1;
}
message Response {
string msg = 1;
}