From 10fffd9878ab16d4ecc4c18c0205697f8fd298ba Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Sun, 2 Aug 2026 22:43:56 +0900 Subject: [PATCH] fix: Add missing BuildingBlocks namespace to GetMetricsEndpoint (P2 DI fix) --- src/KArtSell.Host/Features/Observability/GetMetricsEndpoint.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/KArtSell.Host/Features/Observability/GetMetricsEndpoint.cs b/src/KArtSell.Host/Features/Observability/GetMetricsEndpoint.cs index 39254664..c7da77c5 100644 --- a/src/KArtSell.Host/Features/Observability/GetMetricsEndpoint.cs +++ b/src/KArtSell.Host/Features/Observability/GetMetricsEndpoint.cs @@ -1,5 +1,6 @@ using FastEndpoints; using Microsoft.Extensions.Logging; +using KArtSell.BuildingBlocks.Observability; namespace KArtSell.Host.Features.Observability;