Skip to content

Instantly share code, notes, and snippets.

@kare
Created March 6, 2015 08:03
Show Gist options
  • Save kare/155b40b7beae5007f625 to your computer and use it in GitHub Desktop.
Save kare/155b40b7beae5007f625 to your computer and use it in GitHub Desktop.
func httpHandler(next http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
next.ServeHTTP(w, r)
}
return http.HandlerFunc(fn)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment