package bond type RedirectRouter string func Redirect(u string, status Status) Handler { return Func(func(c *Context){ c.Redirect(u, status) }) }