Categorygithub.com/knut1027/go-gRPC
repositorypackage
0.0.0-20240509065738-5c94066fd4bc
Repository: https://github.com/knut1027/go-grpc.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

compile

After adding protocol definition to .proto, you need to compile.

protoc greeter.proto --go_out=plugins=grpc:.

start server

go run server/server.go

execute

go run client/client.go world
> Greeting: Hello world

create gRPC document

protoc --doc_out=./docs --doc_opt=html,index.html *.proto