fix(opcuaclient): register the OpcUaClient driver factory (was always stubbed)

This commit is contained in:
Joseph Doherty
2026-06-13 08:20:02 -04:00
parent bc9cd464b5
commit 9357c001b7
5 changed files with 98 additions and 0 deletions
@@ -102,6 +102,7 @@ public static class DriverFactoryBootstrap
Driver.FOCAS.FocasDriverFactoryExtensions.Register(registry);
Driver.Galaxy.GalaxyDriverFactoryExtensions.Register(registry, loggerFactory);
Driver.Modbus.ModbusDriverFactoryExtensions.Register(registry, loggerFactory);
Driver.OpcUaClient.OpcUaClientDriverFactoryExtensions.Register(registry, loggerFactory);
Driver.S7.S7DriverFactoryExtensions.Register(registry);
Driver.TwinCAT.TwinCATDriverFactoryExtensions.Register(registry);
}