Bump deps

This commit is contained in:
Jeff Mitchell
2017-09-05 18:06:47 -04:00
parent 7cd68af8f3
commit b0e29bb2ec
465 changed files with 37332 additions and 20695 deletions

View File

@@ -14,6 +14,6 @@ import (
"net/http"
)
func withContext(ctx context.Context, req *http.Request) (context.Context, *http.Request) {
return ctx, req.WithContext(ctx)
func withContext(ctx context.Context, req *http.Request) *http.Request {
return req.WithContext(ctx)
}