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

go19.go 347B

12345678910111213141516
  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.9
  5. package http2
  6. import (
  7. "net/http"
  8. )
  9. func configureServer19(s *http.Server, conf *Server) error {
  10. s.RegisterOnShutdown(conf.state.startGracefulShutdown)
  11. return nil
  12. }