| 14 | ) |
| 15 | |
| 16 | type commentRepository struct { |
| 17 | dao dao.CommentDAO |
| 18 | cache cache.CommentCache |
| 19 | } |
| 20 | |
| 21 | type CommentRepository interface { |
| 22 | CreateComment(ctx context.Context, comment domain.Comment) (int64, error) |
nothing calls this directly
no outgoing calls
no test coverage detected