I'm working on the UsersRepository

userValidotor has been added and tests are being developed
This commit is contained in:
Artemy
2025-06-17 11:57:57 +07:00
parent 5747f26421
commit 568b09ba81
12 changed files with 180 additions and 25 deletions
-1
View File
@@ -23,7 +23,6 @@
<ItemGroup>
<Folder Include="Controllers\" />
<Folder Include="Hubs\" />
<Folder Include="Services\" />
</ItemGroup>
+8
View File
@@ -0,0 +1,8 @@
using Microsoft.AspNetCore.SignalR;
namespace Govor.API.Hubs;
public class ChatsHub : Hub
{
}
+8
View File
@@ -0,0 +1,8 @@
using Microsoft.AspNetCore.SignalR;
namespace Govor.API.Hubs;
public class UsersHub : Hub
{
}