refactor(AuthClientTests): Umbenennung der Variablennamen

This commit is contained in:
Developer 02
2025-02-04 20:50:34 +01:00
parent 319763040c
commit 5f9926e911
6 changed files with 23 additions and 23 deletions

View File

@@ -1,6 +1,6 @@
namespace DigitalData.Auth.Abstractions;
public interface IAuthClient : IListenHandler, IAuthSenderHandler
public interface IAuthClient : IAuthListenHandler, IAuthSenderHandler
{
bool IsConnected { get; }

View File

@@ -0,0 +1,6 @@
namespace DigitalData.Auth.Abstractions;
public interface IAuthListenHandler
{
Task ReceiveKeyAsync(string topic, string key);
}

View File

@@ -1,6 +0,0 @@
namespace DigitalData.Auth.Abstractions;
public interface IListenHandler
{
Task ReceiveMessageAsync(string user, string message);
}