axum-connect/axum-connect-examples/proto/hello.proto
2023-05-02 10:03:11 -07:00

11 lines
221 B
Protocol Buffer

syntax = "proto3";
package hello;
message HelloRequest { optional string name = 1; }
message HelloResponse { string message = 1; }
service HelloWorldService {
rpc SayHello(HelloRequest) returns (HelloResponse) {}
}