mirror of https://github.com/mindoc-org/mindoc.git
14 lines
227 B
Go
14 lines
227 B
Go
|
package controllers
|
||
|
|
||
|
type DocumentController struct {
|
||
|
BaseController
|
||
|
}
|
||
|
|
||
|
func (p *DocumentController) Index() {
|
||
|
p.TplName = "document/index.tpl"
|
||
|
}
|
||
|
|
||
|
func (p *DocumentController) Read() {
|
||
|
p.TplName = "document/kancloud.tpl"
|
||
|
}
|