How to set context in gRPC server/client
Just started to work on gRPC project in golang and wonder how the context used in gRPC
Inject default Context into go-grpc server (e.g. logger injection)
The golang go-grpc grpc.NewServer(...)
call appears to lack any means to inject a default context.Context
that should be inherited by all server gRPC call handlers.