搭建框架

This commit is contained in:
Minho
2017-04-20 18:19:32 +08:00
parent 4ebc28a431
commit d58087f723
70 changed files with 33940 additions and 28331 deletions

13
controllers/setting.go Normal file
View File

@@ -0,0 +1,13 @@
package controllers
type SettingController struct {
BaseController
}
func (p *SettingController) Index() {
p.TplName = "setting/index.tpl"
}
func (p *SettingController) Password() {
p.TplName = "setting/password.tpl"
}