Files
flatbuffers/grpc/flatbuffers-js-grpc/src/greeter.fbs
mustiikhalil 60eed0ca66 Updating working code (#6441)
Fixes issues with namespaces in grpc ts

Renamed welcome -> models
2021-02-10 11:46:45 -08:00

15 lines
251 B
Plaintext

namespace models;
table HelloReply {
message:string;
}
table HelloRequest {
name:string;
}
rpc_service Greeter {
SayHello(models.HelloRequest):models.HelloReply;
SayManyHellos(models.HelloRequest):models.HelloReply (streaming: "server");
}