ingress-nginx-helm/images/grpc-fortune-teller/proto/fortune/fortune.proto

14 lines
227 B
Protocol Buffer
Raw Normal View History

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