(ctx, next)
| 24 | } |
| 25 | |
| 26 | async remove(ctx, next) { |
| 27 | const { commentId } = ctx.params; |
| 28 | const result = await service.remove(commentId); |
| 29 | ctx.body = result; |
| 30 | } |
| 31 | |
| 32 | async list(ctx, next) { |
| 33 | const { momentId } = ctx.query; |
nothing calls this directly
no outgoing calls
no test coverage detected