commentRepo comment repository
| 37 | |
| 38 | // commentRepo comment repository |
| 39 | type commentRepo struct { |
| 40 | data *data.Data |
| 41 | uniqueIDRepo unique.UniqueIDRepo |
| 42 | } |
| 43 | |
| 44 | // NewCommentRepo new repository |
| 45 | func NewCommentRepo(data *data.Data, uniqueIDRepo unique.UniqueIDRepo) comment.CommentRepo { |
nothing calls this directly
no outgoing calls
no test coverage detected