CommentHandler 评论处理器结构体
| 12 | |
| 13 | // CommentHandler 评论处理器结构体 |
| 14 | type CommentHandler struct { |
| 15 | svc service.CommentService |
| 16 | } |
| 17 | |
| 18 | // NewCommentHandler 创建新的评论处理器 |
| 19 | func NewCommentHandler(svc service.CommentService) *CommentHandler { |
nothing calls this directly
no outgoing calls
no test coverage detected