| 11 | ) |
| 12 | |
| 13 | type CommentCache interface { |
| 14 | Get(ctx context.Context, postId int64) (domain.Comment, error) |
| 15 | Set(ctx context.Context, du domain.Comment) error |
| 16 | } |
| 17 | |
| 18 | type commentCache struct { |
| 19 | cmd redis.Cmdable |
no outgoing calls
no test coverage detected