mirror of
https://github.com/smallnest/rpcx.git
synced 2025-12-24 12:27:56 +08:00
10 lines
243 B
Bash
10 lines
243 B
Bash
# generate .go files from IDL
|
|
protoc -I. --go_out=. --go_opt=module="testdata" ./protobuf.proto
|
|
|
|
thrift -r -out ../ --gen go ./thrift_colorgroup.thrift
|
|
|
|
# # run benchmarks
|
|
# go test -bench=. -run=none
|
|
|
|
# # clean files
|
|
# rm -rf ./testdata/*.go |