The reconcile package is used for DOM reconcilation in Isomorphic Go web applications.

not_go16.go 412B

123456789101112131415161718192021
  1. // Copyright 2015 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. // +build !go1.6
  5. package http2
  6. import (
  7. "net/http"
  8. "time"
  9. )
  10. func configureTransport(t1 *http.Transport) (*Transport, error) {
  11. return nil, errTransportVersion
  12. }
  13. func transportExpectContinueTimeout(t1 *http.Transport) time.Duration {
  14. return 0
  15. }