Cleaned up request acks. Added internal service bus for internal messaging.

This commit is contained in:
Tom
2024-11-08 15:32:42 +00:00
parent fe2eb86a08
commit 66f2bf7ec6
33 changed files with 1326 additions and 415 deletions

View File

@@ -0,0 +1,8 @@
namespace TwitchChatTTS.Hermes.Socket.Requests
{
public interface IRequestAck
{
string Name { get; }
void Acknowledge(string requestId, string json, IDictionary<string, object>? requestData);
}
}