(ctx context.Context, value string)
| 5963 | } |
| 5964 | |
| 5965 | func (m queryMetricsStore) UpsertLogoURL(ctx context.Context, value string) error { |
| 5966 | start := time.Now() |
| 5967 | r0 := m.s.UpsertLogoURL(ctx, value) |
| 5968 | m.queryLatencies.WithLabelValues("UpsertLogoURL").Observe(time.Since(start).Seconds()) |
| 5969 | m.queryCounts.WithLabelValues(httpmw.ExtractHTTPRoute(ctx), httpmw.ExtractHTTPMethod(ctx), "UpsertLogoURL").Inc() |
| 5970 | return r0 |
| 5971 | } |
| 5972 | |
| 5973 | func (m queryMetricsStore) UpsertMCPServerUserToken(ctx context.Context, arg database.UpsertMCPServerUserTokenParams) (database.MCPServerUserToken, error) { |
| 5974 | start := time.Now() |
nothing calls this directly
no test coverage detected