Initial commit
This commit is contained in:
13
srcs/RobotNet10/RobotApp/RobotNet10.RobotApp/Hubs/XlocHub.cs
Normal file
13
srcs/RobotNet10/RobotApp/RobotNet10.RobotApp/Hubs/XlocHub.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user