9 lines
151 B
Go
9 lines
151 B
Go
|
package bond
|
||
|
|
||
|
type RedirectRouter string
|
||
|
func Redirect(u string, status Status) Handler {
|
||
|
return Func(func(c *Context){
|
||
|
c.Redirect(u, status)
|
||
|
})
|
||
|
}
|