document.go 227 B

12345678910111213
  1. package controllers
  2. type DocumentController struct {
  3. BaseController
  4. }
  5. func (p *DocumentController) Index() {
  6. p.TplName = "document/index.tpl"
  7. }
  8. func (p *DocumentController) Read() {
  9. p.TplName = "document/kancloud.tpl"
  10. }