Files
cloudpods/pkg/appsrv/stages.go
T
2018-08-01 14:13:23 +08:00

13 lines
307 B
Go

package appsrv
import (
"context"
"net/http"
)
type MiddlewareFunc func(f func(context.Context, http.ResponseWriter, *http.Request)) func(context.Context, http.ResponseWriter, *http.Request)
func (app *Application) RegisterMiddleware(f MiddlewareFunc) {
app.middlewares = append(app.middlewares, f)
}