1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-23 17:53:05 +02:00
go-micro/service/grpc/proto/test.proto

14 lines
156 B
Protocol Buffer
Raw Normal View History

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