mirror of
https://github.com/AThilenius/axum-connect.git
synced 2025-01-08 18:51:46 +00:00
11 lines
212 B
Protocol Buffer
11 lines
212 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package hello;
|
|
|
|
message HelloRequest { string name = 1; }
|
|
|
|
message HelloResponse { string message = 1; }
|
|
|
|
service HelloWorldService {
|
|
rpc SayHello(HelloRequest) returns (HelloResponse) {}
|
|
}
|