// StartTimeFromContext extracts a start time from a context. func StartTimeFromContext(ctx context.Context) (start time.Time, ok bool) { start, ok = ctx.Value(ctxKeyStartTime).(time.Time) return }
// RequestIDFromContext extracts a request ID from a context. func RequestIDFromContext(ctx context.Context) (id string, ok bool) { id, ok = ctx.Value(ctxKeyReqID).(string) return }
// LoggerFromContext extracts a logger from a context. func LoggerFromContext(ctx context.Context) (logger log.Logger, ok bool) { logger, ok = ctx.Value(ctxKeyLogger).(log.Logger) return }
// ParamsFromContext extracts params from a context. func ParamsFromContext(ctx context.Context) (params httprouter.Params, ok bool) { params, ok = ctx.Value(ctxKeyParams).(httprouter.Params) return }
// ComponentNameFromContext extracts a component name from a context. func ComponentNameFromContext(ctx context.Context) (componentName string, ok bool) { componentName, ok = ctx.Value(ctxKeyComponent).(string) return }