(ctx context.Context, id int32)
| 579 | } |
| 580 | |
| 581 | func (m queryMetricsStore) DeleteLicense(ctx context.Context, id int32) (int32, error) { |
| 582 | start := time.Now() |
| 583 | r0, r1 := m.s.DeleteLicense(ctx, id) |
| 584 | m.queryLatencies.WithLabelValues("DeleteLicense").Observe(time.Since(start).Seconds()) |
| 585 | m.queryCounts.WithLabelValues(httpmw.ExtractHTTPRoute(ctx), httpmw.ExtractHTTPMethod(ctx), "DeleteLicense").Inc() |
| 586 | return r0, r1 |
| 587 | } |
| 588 | |
| 589 | func (m queryMetricsStore) DeleteMCPServerConfigByID(ctx context.Context, id uuid.UUID) error { |
| 590 | start := time.Now() |
nothing calls this directly
no test coverage detected