-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c8ae01f
commit 51342c4
Showing
6 changed files
with
24 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,23 @@ go run ./cmd/grpc-client/ -endpoint http://api.rpcpool.com:80 -x-token <token> - | |
|
||
## Updating protofiles | ||
|
||
Make sure you have the Protocol Buffer compiler (protoc) and its plugins installed for Go: | ||
Make sure you have protoc installed: | ||
|
||
```bash | ||
$ protoc --version | ||
libprotoc 28.3 | ||
``` | ||
|
||
And the golang plugins: | ||
|
||
```bash | ||
$ go list -f '{{.Path}} {{.Version}}' -m google.golang.org/protobuf | ||
google.golang.org/protobuf v1.35.1 | ||
$ go list -f '{{.Path}} {{.Version}}' -m google.golang.org/grpc | ||
google.golang.org/grpc v1.67.1 | ||
``` | ||
|
||
If you don't have the protobuf go plugins installed, you can install them with: | ||
|
||
``` | ||
$ go install google.golang.org/protobuf/cmd/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.