Skip to main content

flexgrpc

About#

A flex compatible grpc server

The package flexgrpc provides a default set of configuration for hosting a grpc server in a service.

Install#

go get github.com/go-flexible/flexgrpc

Go Reference

Example#

Starting server and exposing the service#

srv := flexgrpc.New(    &flexgrpc.Config{Addr: ":8080"},    grpc.ConnectionTimeout(10*time.Second),)_ = srv.Run(ctx)