fastinahurry/.proto
2025-07-27 21:38:01 -06:00

15 lines
216 B
Protocol Buffer

syntax = "proto3";
package helloworld;
service StartHandshake {
rpc SayHello (HelloRequest) returns (HelloReply);
}
service HelloRequest {
string name = 1;
}
message HelloReply {
string message = 1;
}