WithContext returns a copy of the parent context and associates it with an in-flight HTTP request. This function is cheap.
(parent context.Context, req *http.Request)
| 97 | // and associates it with an in-flight HTTP request. |
| 98 | // This function is cheap. |
| 99 | func WithContext(parent context.Context, req *http.Request) context.Context { |
| 100 | return internal.WithContext(parent, req) |
| 101 | } |
| 102 | |
| 103 | // BlobKey is a key for a blobstore blob. |
| 104 | // |
nothing calls this directly
no test coverage detected
searching dependent graphs…