ingress-nginx-helm/images/grpc-fortune-teller/proto/fortune/fortune.proto
2018-05-03 20:39:38 -06:00

14 lines
No EOL
227 B
Protocol Buffer

syntax = "proto3";
package build.stack.fortune;
message PredictionRequest {
}
message PredictionResponse {
string message = 1;
}
service FortuneTeller {
rpc Predict(PredictionRequest) returns (PredictionResponse);
}