feat(adminui): add DriverStatusSignalRBridge + InMemory snapshot store

This commit is contained in:
Joseph Doherty
2026-05-28 10:13:30 -04:00
parent 3f23a1acd3
commit 29370fde3c
5 changed files with 115 additions and 0 deletions
@@ -3,6 +3,7 @@ using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Routing;
using Microsoft.Extensions.DependencyInjection;
using ZB.MOM.WW.OtOpcUa.AdminUI.Hubs;
namespace ZB.MOM.WW.OtOpcUa.AdminUI;
@@ -37,6 +38,7 @@ public static class EndpointRouteBuilderExtensions
public static IServiceCollection AddAdminUI(this IServiceCollection services)
{
services.AddRazorComponents().AddInteractiveServerComponents();
services.AddOtOpcUaDriverStatusServices();
return services;
}
}