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.
13 satır
196 B
13 satır
196 B
6 yıl önce
|
package controllers
|
||
|
|
||
|
import "github.com/astaxie/beego"
|
||
|
|
||
|
type MapController struct {
|
||
|
beego.Controller
|
||
|
}
|
||
|
|
||
|
func (this *MapController) Get() {
|
||
|
this.Data["IsMap"] = true
|
||
|
this.TplName = "map.html"
|
||
|
}
|