WIP: PAIN

This commit is contained in:
2026-03-05 14:24:03 -05:00
parent e81843b11b
commit 0e3b479bd6
27 changed files with 684 additions and 772 deletions

View File

@@ -22,6 +22,11 @@ class LogRegistry:
self.data: dict[str, dict[str, Any]] = {}
self.load_registry()
@property
def sessions(self) -> dict[str, dict[str, Any]]:
"""Alias for compatibility with older code/tests."""
return self.data
def load_registry(self) -> None:
"""
Loads the registry data from the TOML file into memory.