Files

16 lines
217 B
Protocol Buffer
Raw Permalink Normal View History

2026-05-12 13:44:53 -07:00
syntax = "proto3";
package hello;
service HelloWorldService {
rpc HelloWorld (HelloRequest) returns (HelloResponse);
}
message HelloRequest {
string name = 1;
}
message HelloResponse {
string message = 1;
}