2024-07-04 11:02:45 +05:00
|
|
|
using AsbCloudWebApi.SignalR.Clients;
|
2023-10-30 12:13:38 +05:00
|
|
|
using Microsoft.AspNetCore.Authorization;
|
2021-04-08 17:54:02 +05:00
|
|
|
|
2021-04-09 17:59:07 +05:00
|
|
|
namespace AsbCloudWebApi.SignalR
|
2021-04-08 17:54:02 +05:00
|
|
|
{
|
2021-04-09 17:59:07 +05:00
|
|
|
// SignalR manual:
|
|
|
|
// https://docs.microsoft.com/ru-ru/aspnet/core/signalr/introduction?view=aspnetcore-5.0
|
2021-04-08 17:54:02 +05:00
|
|
|
|
|
|
|
[Authorize]
|
2023-10-30 12:13:38 +05:00
|
|
|
public class TelemetryHub : BaseHub<ITelemetryHubClient>
|
2021-04-08 17:54:02 +05:00
|
|
|
{
|
2023-07-10 16:59:11 +05:00
|
|
|
|
2021-04-08 17:54:02 +05:00
|
|
|
}
|
|
|
|
}
|