(ctx context.Context, id uuid.UUID)
| 563 | } |
| 564 | |
| 565 | func (m queryMetricsStore) DeleteGroupByID(ctx context.Context, id uuid.UUID) error { |
| 566 | start := time.Now() |
| 567 | r0 := m.s.DeleteGroupByID(ctx, id) |
| 568 | m.queryLatencies.WithLabelValues("DeleteGroupByID").Observe(time.Since(start).Seconds()) |
| 569 | m.queryCounts.WithLabelValues(httpmw.ExtractHTTPRoute(ctx), httpmw.ExtractHTTPMethod(ctx), "DeleteGroupByID").Inc() |
| 570 | return r0 |
| 571 | } |
| 572 | |
| 573 | func (m queryMetricsStore) DeleteGroupMemberFromGroup(ctx context.Context, arg database.DeleteGroupMemberFromGroupParams) error { |
| 574 | start := time.Now() |
nothing calls this directly
no test coverage detected