| 9 | // ` |
| 10 | |
| 11 | class MomentService { |
| 12 | async create(userId, content) { |
| 13 | const statement = `INSERT INTO moment (content, user_id) VALUES (?, ?);`; |
| 14 | const [result] = await connection.execute(statement, [content, userId]); |
nothing calls this directly
no outgoing calls
no test coverage detected