Below is the signature of the WithValue func. func WithValue(parent Context, key, val interface{}) Context I took a look at Go official documentation but they
I have some async calls that runs and I'm setting a timeout for all via the context. ctxWithTimeout, cancel := context.WithTimeout(ctx, getTimeoutDuration()) de