码农笔录博客源码
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

14 строки
187 B

package controllers
import (
"github.com/astaxie/beego"
)
type IndexController struct {
beego.Controller
}
func (this *IndexController) Get() {
this.Redirect("blogs",302)
return
}