diff --git a/Tiobon.Core.Api/Controllers/BaseApiController.cs b/Tiobon.Core.Api/Controllers/Base/BaseApiController.cs similarity index 96% rename from Tiobon.Core.Api/Controllers/BaseApiController.cs rename to Tiobon.Core.Api/Controllers/Base/BaseApiController.cs index 63b89a64..ebd0975a 100644 --- a/Tiobon.Core.Api/Controllers/BaseApiController.cs +++ b/Tiobon.Core.Api/Controllers/Base/BaseApiController.cs @@ -1,6 +1,4 @@ -using Tiobon.Core.Model; - -namespace Tiobon.Core.Controllers +namespace Tiobon.Core.Controllers { public class BaseApiController : Controller { diff --git a/Tiobon.Core.Api/Controllers/BaseController.cs b/Tiobon.Core.Api/Controllers/Base/BaseController.cs similarity index 99% rename from Tiobon.Core.Api/Controllers/BaseController.cs rename to Tiobon.Core.Api/Controllers/Base/BaseController.cs index 04085b48..8e139a7a 100644 --- a/Tiobon.Core.Api/Controllers/BaseController.cs +++ b/Tiobon.Core.Api/Controllers/Base/BaseController.cs @@ -1,5 +1,4 @@ using System.Reflection; -using Confluent.Kafka; namespace Tiobon.Core.Controllers;