mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-04-06 11:06:50 +00:00
added grpc verion and echo apis --------- Co-authored-by: Prashant Dwivedi <prashantdwivedi194@gmail.com>
18 lines
239 B
Protocol Buffer
18 lines
239 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "./panic";
|
|
|
|
package panic;
|
|
|
|
// The greeting service definition.
|
|
service PanicService {
|
|
rpc Panic (PanicRequest) returns (PanicResponse) {}
|
|
}
|
|
|
|
message PanicRequest {
|
|
}
|
|
|
|
message PanicResponse {
|
|
}
|
|
|