Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
13 righe
196 B
13 righe
196 B
6 anni fa
|
package controllers
|
||
|
|
||
|
import "github.com/astaxie/beego"
|
||
|
|
||
|
type MapController struct {
|
||
|
beego.Controller
|
||
|
}
|
||
|
|
||
|
func (this *MapController) Get() {
|
||
|
this.Data["IsMap"] = true
|
||
|
this.TplName = "map.html"
|
||
|
}
|