Skip to content

Instantly share code, notes, and snippets.

@harwoeck
Created July 4, 2017 19:47
Show Gist options
  • Save harwoeck/be9058997622440be2cb16e2bd9dec06 to your computer and use it in GitHub Desktop.
Save harwoeck/be9058997622440be2cb16e2bd9dec06 to your computer and use it in GitHub Desktop.
func WrapperHandler(handler func(http.ResponseWriter, *http.Request)) func(http.ResponseWriter, *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
handler(w, r)
}
}
@harwoeck
Copy link
Author

harwoeck commented Jul 4, 2017

http.HandleFunc("/dashboard/admin/", wrapperHandler(handlerDashboardAdmin))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment