mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-08 14:15:17 +00:00
Implemented server.go and half implemented client.go Finishes implementation for greeter go example Update grpc code for monster.fbs Adds a couple of cpp methods Adhere to gofmt standards Adds a readme for issues with grpc
18 lines
221 B
Bash
18 lines
221 B
Bash
current_dir=`pwd`
|
|
|
|
cd ../..
|
|
|
|
main_dir=`pwd`
|
|
|
|
cd ${current_dir}
|
|
|
|
alias fbc='${main_dir}/Debug/flatc'
|
|
generator="--grpc $current_dir/greeter.fbs"
|
|
|
|
# Regenerate Go lang code
|
|
cd go/
|
|
|
|
cd greeter
|
|
fbc --go ${generator}
|
|
|
|
cd ../.. |