Packages

An implementation of Google's Protocol Buffers for Erlang, based on ngerakines/erlang_protobuffs.

Current section

Files

Jump to
protobuffs test erlang_protobuffs_SUITE_data proto service.proto
Raw

test/erlang_protobuffs_SUITE_data/proto/service.proto

service SearchService {
rpc Search (SearchRequest) returns (SearchResponse);
}
message SearchResponse {
optional string found = 1;
}
message SearchRequest {
optional string seek = 1;
}