mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-04-05 20:17:53 +08:00
13 lines
226 B
Go
13 lines
226 B
Go
package controllers
|
|
|
|
type SettingController struct {
|
|
BaseController
|
|
}
|
|
|
|
func (p *SettingController) Index() {
|
|
p.TplName = "setting/index.tpl"
|
|
}
|
|
|
|
func (p *SettingController) Password() {
|
|
p.TplName = "setting/password.tpl"
|
|
} |