From c7ffb4a1b4bac9fa52728ee398f8e9a771ef3c78 Mon Sep 17 00:00:00 2001 From: root <295172551@qq.com> Date: Thu, 24 Jul 2025 23:10:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0Domain=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CoreAgent.Domain/CoreAgent.Domain.csproj | 4 +++- .../CustomWSClient/ICustomMessageHandler.cs | 13 ------------- .../IObserverCustomWebSocketClient.cs | 13 ------------- .../IProtocolLogsProviderObserver.cs | 13 ------------- .../ProtocolLogHandlers/IProtocollHandleLogs.cs | 15 --------------- .../CoreAgent.Infrastructure.csproj | 1 - 6 files changed, 3 insertions(+), 56 deletions(-) delete mode 100644 CoreAgent.Domain/Interfaces/CustomWSClient/ICustomMessageHandler.cs delete mode 100644 CoreAgent.Domain/Interfaces/CustomWSClient/IObserverCustomWebSocketClient.cs delete mode 100644 CoreAgent.Domain/Interfaces/ProtocolLogHandlers/IProtocolLogsProviderObserver.cs delete mode 100644 CoreAgent.Domain/Interfaces/ProtocolLogHandlers/IProtocollHandleLogs.cs diff --git a/CoreAgent.Domain/CoreAgent.Domain.csproj b/CoreAgent.Domain/CoreAgent.Domain.csproj index 11f42c4..f32cd8c 100644 --- a/CoreAgent.Domain/CoreAgent.Domain.csproj +++ b/CoreAgent.Domain/CoreAgent.Domain.csproj @@ -8,8 +8,11 @@ + + + @@ -19,7 +22,6 @@ - diff --git a/CoreAgent.Domain/Interfaces/CustomWSClient/ICustomMessageHandler.cs b/CoreAgent.Domain/Interfaces/CustomWSClient/ICustomMessageHandler.cs deleted file mode 100644 index ac57127..0000000 --- a/CoreAgent.Domain/Interfaces/CustomWSClient/ICustomMessageHandler.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace CoreAgent.Domain.Interfaces.CustomWSClient -{ - public interface ICustomMessageHandler - { - void HandleMessage(string MsgData, IObserverCustomWebSocketClient observer); - } -} diff --git a/CoreAgent.Domain/Interfaces/CustomWSClient/IObserverCustomWebSocketClient.cs b/CoreAgent.Domain/Interfaces/CustomWSClient/IObserverCustomWebSocketClient.cs deleted file mode 100644 index 0fdef65..0000000 --- a/CoreAgent.Domain/Interfaces/CustomWSClient/IObserverCustomWebSocketClient.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace CoreAgent.Domain.Interfaces.CustomWSClient -{ - public interface IObserverCustomWebSocketClient - { - public void SendMessage(string message); - } -} diff --git a/CoreAgent.Domain/Interfaces/ProtocolLogHandlers/IProtocolLogsProviderObserver.cs b/CoreAgent.Domain/Interfaces/ProtocolLogHandlers/IProtocolLogsProviderObserver.cs deleted file mode 100644 index 7fd4d21..0000000 --- a/CoreAgent.Domain/Interfaces/ProtocolLogHandlers/IProtocolLogsProviderObserver.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace CoreAgent.Domain.Interfaces.ProtocolLogHandlers -{ - public interface IProtocolLogsProviderObserver - { - void OnData(string msg); - } -} diff --git a/CoreAgent.Domain/Interfaces/ProtocolLogHandlers/IProtocollHandleLogs.cs b/CoreAgent.Domain/Interfaces/ProtocolLogHandlers/IProtocollHandleLogs.cs deleted file mode 100644 index df0a354..0000000 --- a/CoreAgent.Domain/Interfaces/ProtocolLogHandlers/IProtocollHandleLogs.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace CoreAgent.Domain.Interfaces.ProtocolLogHandlers -{ - public interface IProtocollHandleLogs - { - public void RunStart(); - - public void RunStop(); - } -} diff --git a/CoreAgent.Infrastructure/CoreAgent.Infrastructure.csproj b/CoreAgent.Infrastructure/CoreAgent.Infrastructure.csproj index 7a73d4c..1b1ac1a 100644 --- a/CoreAgent.Infrastructure/CoreAgent.Infrastructure.csproj +++ b/CoreAgent.Infrastructure/CoreAgent.Infrastructure.csproj @@ -15,7 +15,6 @@ -