axum-connect/axum-connect-examples/proto/hello.proto

16 lines
250 B
Protocol Buffer
Raw Normal View History

2023-03-03 01:47:16 +00:00
syntax = "proto3";
package axum_connect.examples.hello_world;
message HelloRequest {
string name = 1;
}
message HelloResponse {
string message = 1;
}
service HelloWorldService {
rpc SayHello(HelloRequest) returns (HelloResponse) {}
}