mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-05-22 01:12:45 +00:00
19 lines
290 B
Protocol Buffer
19 lines
290 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "./status";
|
|
|
|
package status;
|
|
|
|
// The greeting service definition.
|
|
service StatusService {
|
|
rpc Status (StatusRequest) returns (StatusResponse) {}
|
|
}
|
|
|
|
message StatusRequest {
|
|
string code = 1;
|
|
}
|
|
|
|
message StatusResponse {
|
|
string status = 1;
|
|
}
|