forked from ddrilling/AsbCloudServer
15 lines
317 B
C#
15 lines
317 B
C#
|
using Microsoft.AspNetCore.Authorization;
|
|||
|
using Microsoft.AspNetCore.SignalR;
|
|||
|
|
|||
|
namespace AsbCloudWebApi.SignalR
|
|||
|
{
|
|||
|
// SignalR manual:
|
|||
|
// https://docs.microsoft.com/ru-ru/aspnet/core/signalr/introduction?view=aspnetcore-5.0
|
|||
|
|
|||
|
[Authorize]
|
|||
|
public class ReportsHub : Hub<IReportHubClient>
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|