14 lines
413 B
C#
14 lines
413 B
C#
using Microsoft.AspNetCore.SignalR;
|
|
|
|
namespace RobotNet10.RobotApp.Hubs;
|
|
|
|
/// <summary>
|
|
/// SignalR Hub for broadcasting XLOC real-time data
|
|
/// Clients can subscribe to pose and diagnostics updates
|
|
/// </summary>
|
|
public class XlocHub : Hub
|
|
{
|
|
// Hub methods for client-to-server communication can be added here if needed
|
|
// Currently this hub is used only for server-to-client broadcasting
|
|
}
|