maint: added livewatch asset

This commit is contained in:
Chris
2025-08-31 18:14:07 -04:00
parent 7f5d95787b
commit ae2371a6fa
385 changed files with 150792 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace Ingvar.LiveWatch
{
public static class WatchServices
{
public static WatchReferenceCreator ReferenceCreator { get; set; } = new();
public static WatchVariableCreator VariableCreator { get; set; } = new();
public static WatchVariableUpdater VariableUpdater { get; set; } = new();
public static WatchCachedNamesBuilder NameBuilder { get; set; } = new();
public static WatchVariableSortUpdater VariableSortUpdater { get; set; } = new();
}
}