diff --git a/src/Trash.Tests/Command/Helpers/CliTypeActivatorTest.cs b/src/Trash.Tests/Command/Helpers/CliTypeActivatorTest.cs index 6275fc64..975e57d5 100644 --- a/src/Trash.Tests/Command/Helpers/CliTypeActivatorTest.cs +++ b/src/Trash.Tests/Command/Helpers/CliTypeActivatorTest.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using Autofac; using FluentAssertions; using NUnit.Framework; +using Trash.Command; using Trash.Command.Helpers; namespace Trash.Tests.Command.Helpers; diff --git a/src/Trash/Command/Helpers/IServiceCommand.cs b/src/Trash/Command/IServiceCommand.cs similarity index 86% rename from src/Trash/Command/Helpers/IServiceCommand.cs rename to src/Trash/Command/IServiceCommand.cs index 7b442331..af9b385d 100644 --- a/src/Trash/Command/Helpers/IServiceCommand.cs +++ b/src/Trash/Command/IServiceCommand.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; -namespace Trash.Command.Helpers; +namespace Trash.Command; public interface IServiceCommand { diff --git a/src/Trash/Command/Helpers/ServiceCommand.cs b/src/Trash/Command/ServiceCommand.cs similarity index 99% rename from src/Trash/Command/Helpers/ServiceCommand.cs rename to src/Trash/Command/ServiceCommand.cs index e6fcd044..247707a9 100644 --- a/src/Trash/Command/Helpers/ServiceCommand.cs +++ b/src/Trash/Command/ServiceCommand.cs @@ -15,7 +15,7 @@ using Serilog.Events; using TrashLib.Extensions; using YamlDotNet.Core; -namespace Trash.Command.Helpers; +namespace Trash.Command; public abstract class ServiceCommand : ICommand, IServiceCommand {