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

go16.go 331B

12345678910111213141516
  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. // +build go1.6
  5. package http2
  6. import (
  7. "net/http"
  8. "time"
  9. )
  10. func transportExpectContinueTimeout(t1 *http.Transport) time.Duration {
  11. return t1.ExpectContinueTimeout
  12. }