mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
13 lines
No EOL
313 B
C#
13 lines
No EOL
313 B
C#
using Microsoft.AspNetCore.SignalR;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Api.Hubs
|
|
{
|
|
public class ScanActivityHub : Hub
|
|
{
|
|
public async Task SendSystemActivity(string scanActivity)
|
|
{
|
|
await Clients.All.SendAsync("SendSystemActivity", scanActivity);
|
|
}
|
|
}
|
|
} |