From b7fc6bf5cb559508a858a655dd8ecaa5ce1c65bb Mon Sep 17 00:00:00 2001 From: xiaochanghai Date: Tue, 16 Apr 2024 15:20:21 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=93=E6=9E=84=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Tiobon.Core.Api/Controllers/{ => Base}/BaseApiController.cs | 4 +--- Tiobon.Core.Api/Controllers/{ => Base}/BaseController.cs | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) rename Tiobon.Core.Api/Controllers/{ => Base}/BaseApiController.cs (96%) rename Tiobon.Core.Api/Controllers/{ => Base}/BaseController.cs (99%) 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;