9 lines
188 B
Go
9 lines
188 B
Go
package bond
|
|
|
|
// Returns the handler that redirects to the specified URL (u)
|
|
func Redirect(u string, status Status) Handler {
|
|
return Func(func(c *Context){
|
|
c.Redirect(u, status)
|
|
})
|
|
}
|
|
|