(ctx context.Context, postID uint)
| 14 | FindAll(ctx context.Context, pagination domain.Pagination) ([]domain.Check, error) |
| 15 | FindByID(ctx context.Context, checkID int64) (domain.Check, error) |
| 16 | FindByPostId(ctx context.Context, postID uint) (domain.Check, error) |
| 17 | } |
| 18 | |
| 19 | type checkRepository struct { |