mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-09-17 16:26:57 +08:00
13 lines
307 B
Go
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)
|
|
}
|