Explorar el Código

add modules supports

tags/v0.9.0
jimzhan hace 9 años
padre
commit
9851f98909
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      server.go

+ 2
- 2
server.go Ver fichero

@@ -123,8 +123,8 @@ func (self *server) FileServer(prefix, dir string) {
}

// Use add the middleware module into the stack chain.
func (self *server) Use(module func(http.Handler) http.Handler) {
self.middleware.stack = append(self.middleware.stack, module)
func (self *server) Use(module ...func(http.Handler) http.Handler) {
self.middleware.stack = append(self.middleware.stack, module...)
}

// Get is a shortcut for mux.HandleFunc(pattern, handler).Methods("GET"),

Cargando…
Cancelar
Guardar