Selaa lähdekoodia

add modules supports

tags/v0.9.0
jimzhan 9 vuotta sitten
vanhempi
commit
9851f98909
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. +2
    -2
      server.go

+ 2
- 2
server.go Näytä tiedosto

@@ -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"),

Loading…
Peruuta
Tallenna