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"
 | 
						|
}
 |