NucuCar/NucuCar.Sensors/Protos/EnvironmentSensor.proto
2019-11-10 14:38:40 +02:00

19 lines
No EOL
392 B
Protocol Buffer

syntax = "proto3";
package NucuCarGrpcSensors;
// The greeting service definition.
service EnvironmentSensorGrpcService {
// Sends a greeting
rpc SayHello (HelloRequest) returns (HelloReply) {}
}
// The request message containing the user's name.
message HelloRequest {
string name = 1;
}
// The response message containing the greetings
message HelloReply {
string message = 1;
}