| 1 | const service = require('../service/comment.service.js'); |
| 2 | |
| 3 | class CommentController { |
| 4 | async create(ctx, next) { |
| 5 | const { momentId, content } = ctx.request.body; |
| 6 | const { id } = ctx.user; |
nothing calls this directly
no outgoing calls
no test coverage detected