mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-04-05 20:17:53 +08:00
20 lines
266 B
Go
20 lines
266 B
Go
package controllers
|
|
|
|
type CommentController struct {
|
|
BaseController
|
|
}
|
|
|
|
func (c *CommentController) Lists() {
|
|
|
|
}
|
|
|
|
func (c *CommentController) Create() {
|
|
|
|
c.JsonResult(0, "ok")
|
|
}
|
|
|
|
func (c *CommentController) Index() {
|
|
c.Prepare()
|
|
c.TplName = "comment/index.tpl"
|
|
}
|