This commit is contained in:
Minho
2017-04-19 18:19:27 +08:00
parent fedf66bc0e
commit 4ebc28a431
308 changed files with 168450 additions and 0 deletions

9
controllers/home.go Normal file
View File

@@ -0,0 +1,9 @@
package controllers
type HomeController struct {
BaseController
}
func (p *HomeController) Index() {
p.TplName = "home/index.tpl"
}