1// Copyright 2016 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5// +build !go1.7
6
7package webdav
8
9import (
10	"net/http"
11
12	"golang.org/x/net/context"
13)
14
15func getContext(r *http.Request) context.Context {
16	return context.Background()
17}
18