fix(IAuthClient): umbenannt in IAuthClient

This commit is contained in:
Developer 02 2025-01-23 15:38:24 +01:00
parent f562690b19
commit 6245a94f43
2 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
namespace DigitalData.Auth.Abstractions; namespace DigitalData.Auth.Abstractions;
public interface IChatClient public interface IAuthClient
{ {
Task ReceiveMessage(string user, string message); Task ReceiveMessage(string user, string message);

View File

@ -1,5 +1,4 @@
using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.SignalR;
using Microsoft.AspNetCore.SignalR;
namespace DigitalData.Auth.API.Hubs; namespace DigitalData.Auth.API.Hubs;