// - proto/example.proto -
syntax="proto3";optiongo_package="proto;helloworld_proto";packageua.made.helloworld;// The greeting service definition.
serviceGreeter{// Sends a greeting
rpcSayHello(HelloRequest)returns(HelloReply){}}// The request message containing the user's name.
messageHelloRequest{stringname=1;}// The response message containing the greetings
messageHelloReply{stringmessage=1;}
// - main.go -
// Package main implements a server for Greeter service.
packagemainimport("context""fmt""log""net"pb"github.com/butuzov/sandbox/grpc/helloworld/proto""google.golang.org/grpc""google.golang.org/grpc/reflection")// server is used to implement helloworld.GreeterServer.
typeserverstruct{pb.UnimplementedGreeterServer}// SayHello implements helloworld.GreeterServer
func(s*server)SayHello(ctxcontext.Context,in*pb.HelloRequest)(*pb.HelloReply,error){log.Printf("Received: %v",in.GetName())return&pb.HelloReply{Message:"Hello "+in.GetName()},nil}funcmain(){listener,err:=net.Listen("tcp","127.0.0.1:0")iferr!=nil{log.Fatalf("failed to listen: %v",err)}fmt.Println("listening on",listener.Addr().String())s:=grpc.NewServer()pb.RegisterGreeterServer(s,&server{})reflection.Register(s)log.Fatalf("failed to serve: %v",s.Serve(listener))}