mirror of
https://github.com/astaxie/beego.git
synced 2024-11-05 06:40:54 +00:00
15 lines
221 B
Go
15 lines
221 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/astaxie/beego"
|
|
)
|
|
|
|
type MainController struct {
|
|
beego.Controller
|
|
}
|
|
|
|
func (this *MainController) Get() {
|
|
this.Data["host"] = this.Ctx.Request.Host
|
|
this.TplNames = "index.tpl"
|
|
}
|