1package mux
2
3type Handler struct {
4 Pattern string
5 Fn HandlerFunc
6}
7
8type HandlerFunc func(*ResponseWriter, *Request)
9
10type ErrHandlerFunc func(*ResponseWriter, *Request) error
11
12type NotFoundHandler func(*ResponseWriter, *Request)
13
14// TODO: AutomaticIndex