dispatch/vendor/golang.org/x/net/http2/not_go16.go

14 lines
313 B
Go
Raw Normal View History

2016-01-08 17:53:02 +00:00
// Copyright 2015 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build !go1.6
package http2
import "net/http"
2016-03-01 00:51:26 +00:00
func configureTransport(t1 *http.Transport) (*Transport, error) {
return nil, errTransportVersion
2016-01-08 17:53:02 +00:00
}