mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 10:49:42 +01:00
12 lines
151 B
Protocol Buffer
12 lines
151 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package echo;
|
||
|
|
||
|
service Echo {
|
||
|
rpc DoEcho (EchoRequest) returns (EchoRequest) {}
|
||
|
}
|
||
|
|
||
|
message EchoRequest {
|
||
|
string message = 1;
|
||
|
}
|