refactor(IAuthClientHandler): umbenannt in IListenHandler

This commit is contained in:
Developer 02
2025-02-04 19:47:40 +01:00
parent 9d609dd5ac
commit 27c2c0b4cb
3 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ using Microsoft.AspNetCore.SignalR;
namespace DigitalData.Auth.API.Hubs;
public class AuthHub : Hub<IAuthClientHandler>, ISenderHandler
public class AuthHub : Hub<IListenHandler>, ISenderHandler
{
public async Task SendMessageAsync(string user, string message)
=> await Clients.All.ReceiveMessageAsync(user, message);