(data *Data, logger log.Logger)
| 50 | } |
| 51 | |
| 52 | func NewGroupRepo(data *Data, logger log.Logger) biz.GroupRepo { |
| 53 | return &GroupRepo{ |
| 54 | data: data, |
| 55 | log: log.NewHelper(logger), |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | func (g GroupRepo) List(ctx context.Context, orgID uuid.UUID, filterOpts *biz.ListGroupOpts, paginationOpts *pagination.OffsetPaginationOpts) ([]*biz.Group, int, error) { |
| 60 | ctx, span := otelx.Start(ctx, groupRepoTracer, "GroupRepo.List") |
no outgoing calls
no test coverage detected