feat: add __rpc

This commit is contained in:
2022-10-28 00:50:48 +08:00
parent 6873d68129
commit cb12afd2da
9 changed files with 1646 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
Install protoc on macOS:
```
PROTOC_ZIP=protoc-3.14.0-osx-x86_64.zip
curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v3.14.0/$PROTOC_ZIP
sudo unzip -o $PROTOC_ZIP -d /usr/local bin/protoc
sudo unzip -o $PROTOC_ZIP -d /usr/local 'include/*'
rm -f $PROTOC_ZIP
```
from: http://google.github.io/proto-lens/installing-protoc.html