using Microsoft.AspNetCore.SignalR; namespace RobotNet10.RobotApp.Hubs; /// /// SignalR Hub for broadcasting XLOC real-time data /// Clients can subscribe to pose and diagnostics updates /// 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 }