From 985428b5352017474ba4f40f76ae9bfd7746929e Mon Sep 17 00:00:00 2001 From: Christian Arenas Date: Mon, 15 May 2017 19:18:00 +0200 Subject: [PATCH] Fix bad namespace from CommandHandler --- src/Services/Catalog/Catalog.API/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/Catalog/Catalog.API/Startup.cs b/src/Services/Catalog/Catalog.API/Startup.cs index e224dea0a..22dd201d0 100644 --- a/src/Services/Catalog/Catalog.API/Startup.cs +++ b/src/Services/Catalog/Catalog.API/Startup.cs @@ -16,7 +16,7 @@ using Microsoft.eShopOnContainers.Services.Catalog.API.Infrastructure; using Microsoft.eShopOnContainers.Services.Catalog.API.IntegrationCommands.Commands; using Microsoft.eShopOnContainers.Services.Catalog.API.IntegrationEvents; - using Microsoft.eShopOnContainers.Services.Catalog.API.IntegrationCommands.CommandsHandlers; + using Microsoft.eShopOnContainers.Services.Catalog.API.IntegrationCommands.CommandHandlers; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.HealthChecks;