mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-04-19 01:06:37 +00:00
17 lines
247 B
Protocol Buffer
17 lines
247 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "./delay";
|
|
|
|
package delay;
|
|
|
|
message DelayRequest {
|
|
int64 seconds = 1;
|
|
}
|
|
|
|
message DelayResponse {
|
|
int64 message = 1;
|
|
}
|
|
|
|
service DelayService {
|
|
rpc Delay (DelayRequest) returns (DelayResponse) {}
|
|
} |