import "go.chromium.org/luci/gae/service/urlfetch"
Package urlfetch provides a way for an application to get http.RoundTripper that can make outbound HTTP requests. If used for https:// protocol, will always validate SSL certificates.
func Get(c context.Context) http.RoundTripper
Get pulls http.RoundTripper implementation from context or panics if it wasn't set. Use SetFactory(...) or Set(...) in unit tests to mock the round tripper.
Set sets the current http.RoundTripper object in the context. Useful for testing with a quick mock. This is just a shorthand SetFactory invocation to set a factory which always returns the same object.
SetFactory sets the function to produce http.RoundTripper instances, as returned by the Get method.
type Factory func(context.Context) http.RoundTripper
Factory is the function signature for factory methods compatible with SetFactory.
Package urlfetch imports 3 packages (graph) and is imported by 7 packages. Updated 2021-01-26. Refresh now. Tools for package owners.