Skip to content

Instantly share code, notes, and snippets.

@Bebbolus
Created November 30, 2018 16:39
Show Gist options
  • Save Bebbolus/f69df617fb50eadd8a74ae4f4d900261 to your computer and use it in GitHub Desktop.
Save Bebbolus/f69df617fb50eadd8a74ae4f4d900261 to your computer and use it in GitHub Desktop.
func Chain(f http.HandlerFunc, mids ...middleware) http.HandlerFunc {
for _, m := range mids {
f = m(f)
}
return f
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment