mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-05-18 07:26:37 +00:00
added grpc verion and echo apis --------- Co-authored-by: Prashant Dwivedi <prashantdwivedi194@gmail.com>
14 lines
175 B
Protocol Buffer
14 lines
175 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "./echo";
|
|
|
|
package echo;
|
|
|
|
message Message {
|
|
string body = 1;
|
|
}
|
|
|
|
|
|
service EchoService {
|
|
rpc Echo(Message) returns (Message) {}
|
|
} |