(ctx context.Context, arg database.DeleteCryptoKeyParams)
| 523 | } |
| 524 | |
| 525 | func (m queryMetricsStore) DeleteCryptoKey(ctx context.Context, arg database.DeleteCryptoKeyParams) (database.CryptoKey, error) { |
| 526 | start := time.Now() |
| 527 | r0, r1 := m.s.DeleteCryptoKey(ctx, arg) |
| 528 | m.queryLatencies.WithLabelValues("DeleteCryptoKey").Observe(time.Since(start).Seconds()) |
| 529 | m.queryCounts.WithLabelValues(httpmw.ExtractHTTPRoute(ctx), httpmw.ExtractHTTPMethod(ctx), "DeleteCryptoKey").Inc() |
| 530 | return r0, r1 |
| 531 | } |
| 532 | |
| 533 | func (m queryMetricsStore) DeleteCustomRole(ctx context.Context, arg database.DeleteCustomRoleParams) error { |
| 534 | start := time.Now() |
nothing calls this directly
no test coverage detected