Files
Denso/srcs/RobotNet10/RobotApp/RobotNet10.RobotApp/Hubs/XlocHub.cs
2026-07-03 16:31:37 +07:00

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
}