mindoc/controllers/document.go

14 lines
227 B
Go
Raw Normal View History

2017-04-20 18:19:32 +08:00
package controllers
type DocumentController struct {
BaseController
}
func (p *DocumentController) Index() {
p.TplName = "document/index.tpl"
}
func (p *DocumentController) Read() {
p.TplName = "document/kancloud.tpl"
}