Files
podinfo/pkg/api/grpc/status/status.proto
2024-05-08 00:25:37 +05:30

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;
}