25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
12 satır
196 B
12 satır
196 B
package controllers
|
|
|
|
import "github.com/astaxie/beego"
|
|
|
|
type MapController struct {
|
|
beego.Controller
|
|
}
|
|
|
|
func (this *MapController) Get() {
|
|
this.Data["IsMap"] = true
|
|
this.TplName = "map.html"
|
|
}
|
|
|