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);