OSDN Git Service

new repo
[bytom/vapor.git] / vendor / golang.org / x / net / webdav / file_go1.6.go
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
7 package webdav
8
9 import (
10         "net/http"
11
12         "golang.org/x/net/context"
13 )
14
15 func getContext(r *http.Request) context.Context {
16         return context.Background()
17 }