package handlers import ( "net/http" "github.com/gin-gonic/gin" ) func (h *Handlers) GetComments(c *gin.Context) { c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现")) } func (h *Handlers) CreateComment(c *gin.Context) { c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现")) } func (h *Handlers) UpdateComment(c *gin.Context) { c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现")) } func (h *Handlers) DeleteComment(c *gin.Context) { c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现")) } func (h *Handlers) ListTags(c *gin.Context) { c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现")) } func (h *Handlers) CreateTag(c *gin.Context) { c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现")) } func (h *Handlers) UpdateTag(c *gin.Context) { c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现")) } func (h *Handlers) DeleteTag(c *gin.Context) { c.JSON(http.StatusNotImplemented, ErrorResponse(501, "功能暂未实现")) }