mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 02:39:42 +01:00
ce56953b24
* initial echo client/server examples * registered and unregistered versions of the example client * ignore pyc files * cpp echo code, flag to build examples * threaded server example
11 lines
151 B
Protocol Buffer
11 lines
151 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package echo;
|
|
|
|
service Echo {
|
|
rpc DoEcho (EchoRequest) returns (EchoRequest) {}
|
|
}
|
|
|
|
message EchoRequest {
|
|
string message = 1;
|
|
}
|