From 20e18b4248dd6a80f14ceb70cdfae6fe2a94a6fe Mon Sep 17 00:00:00 2001 From: Hazumi Ichijo Date: Tue, 27 Aug 2024 01:39:30 +0900 Subject: [PATCH] Update README.md (#58) --- README.md | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/README.md b/README.md index ef7370f..e32e7c9 100644 --- a/README.md +++ b/README.md @@ -8,24 +8,13 @@ An alternative to [`grpc_cli`](https://github.com/grpc/grpc/blob/master/doc/comm giro can be used for gRPC servers without Server Reflection ## Installation -### macOS ``` brew install rerost/tools/giro ``` -### Linux -https://github.com/rerost/giro/releases - - -## Tutorial -``` -$ git clone https://github.com/rerost/giro.git giro -$ cd giro/example/multiple_package -``` - ### Create & Run reflection server ``` -$ protoc --go_out=plugins=grpc,paths=source_relative:. --reflection-server_out=. $(find . -name '*.proto') +$ protoc --go_out=. --go-grpc_out=. --go_opt=paths=source_relative --go-grpc_opt=paths=source_relative --reflection-server_out=. $(shell find . -name '*.proto') $ go run main.go ```