Exemplo n.º 1
0
func headerResponseMiddleware(ctx *context.Context, h context.Handler) {
	ctx.Response.Header.Set("foo", ctx.Response.Header.Get("foo")+"bar")
	h.Next(ctx)
}
Exemplo n.º 2
0
func forward(ctx *context.Context, h context.Handler) {
	h.Next(ctx)
}