| 2 | const commentRouter = require('../router/comment.router'); |
| 3 | |
| 4 | class CommentService { |
| 5 | async create(momentId, content, userId) { |
| 6 | const statement = `INSERT INTO comment (content, moment_id, user_id) VALUES (?, ?, ?);`; |
| 7 | `INSERT INTO comment SET ?` |
nothing calls this directly
no outgoing calls
no test coverage detected