(ctx context.Context, id uuid.UUID)
| 3498 | } |
| 3499 | |
| 3500 | func (q *querier) GetGroupByID(ctx context.Context, id uuid.UUID) (database.Group, error) { |
| 3501 | return fetch(q.log, q.auth, q.db.GetGroupByID)(ctx, id) |
| 3502 | } |
| 3503 | |
| 3504 | func (q *querier) GetGroupByOrgAndName(ctx context.Context, arg database.GetGroupByOrgAndNameParams) (database.Group, error) { |
| 3505 | return fetch(q.log, q.auth, q.db.GetGroupByOrgAndName)(ctx, arg) |
no test coverage detected