From d1b7877f47c5694d9f6523b79e0825cef0602c49 Mon Sep 17 00:00:00 2001 From: zznty <94796179+zznty@users.noreply.github.com> Date: Thu, 21 Jul 2022 22:40:13 +0700 Subject: [PATCH] ok give it back --- TorchRemote.Plugin/Abstractions/Controllers/IChatController.cs | 2 +- .../Abstractions/Controllers/IServerController.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TorchRemote.Plugin/Abstractions/Controllers/IChatController.cs b/TorchRemote.Plugin/Abstractions/Controllers/IChatController.cs index b7ca360..780abef 100644 --- a/TorchRemote.Plugin/Abstractions/Controllers/IChatController.cs +++ b/TorchRemote.Plugin/Abstractions/Controllers/IChatController.cs @@ -3,6 +3,6 @@ namespace TorchRemote.Plugin.Abstractions.Controllers; public interface IChatController { - Task SendMessage(ChatMessageRequest request); + void SendMessage(ChatMessageRequest request); Task InvokeCommand(ChatCommandRequest request); } diff --git a/TorchRemote.Plugin/Abstractions/Controllers/IServerController.cs b/TorchRemote.Plugin/Abstractions/Controllers/IServerController.cs index 55c388c..3b1c01e 100644 --- a/TorchRemote.Plugin/Abstractions/Controllers/IServerController.cs +++ b/TorchRemote.Plugin/Abstractions/Controllers/IServerController.cs @@ -6,7 +6,7 @@ namespace TorchRemote.Plugin.Abstractions.Controllers; public interface IServerController { ServerStatusResponse GetStatus(); - Task Start(); + void Start(); Task Stop(StopServerRequest request); ServerSettings GetSettings(); Task SetSettings(ServerSettings request);