Skip to content

Instantly share code, notes, and snippets.

@emrekzd
emrekzd / chain.go
Last active August 29, 2015 14:01
Chaining http handlers
package chain
import (
"net/http"
)
type Chain handlerFunc
type handlerFunc func(http.ResponseWriter, *http.Request)
func NewChain(handlers ...handlerFunc) Chain {