How to do it...

  1. Create first-greeting-service.go inside the services directory by executing the command $ mkdir services && cd services && touch first-greeting-service.go.
  2. Copy the following content to first-greeting-service.go:
package mainimport (  "log"  "time"  hello "../proto"  "github.com/micro/go-micro")type Say struct{}func (s *Say) Hello(ctx context.Context, req *hello.Request, rsp *hello.Response) error {  log.Print("Received Say.Hello request - first greeting service")  rsp.Msg = "Hello " + req.Name  return nil}func main() {  service := micro.NewService  (    micro.Name("go.micro.service.greeter"),    micro.RegisterTTL(time.Second*30),    micro.RegisterInterval(time.Second*10),  )  service.Init() hello.RegisterSayHandler(service.Server(), new(Say)) ...

Get Go Web Development Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.