refactor(ISenderHandler): Umbenennung in IAuthSenderHandler.

- umbenannt in SendMessageAsync als SendKeyAsync
This commit is contained in:
Developer 02
2025-02-04 20:45:01 +01:00
parent e474cf38d4
commit 319763040c
6 changed files with 11 additions and 11 deletions

View File

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