mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-04-30 17:48:03 +08:00
10 lines
136 B
Go
10 lines
136 B
Go
package controllers
|
|
|
|
type HomeController struct {
|
|
BaseController
|
|
}
|
|
|
|
func (p *HomeController) Index() {
|
|
p.TplName = "home/index.tpl"
|
|
}
|