feat: add durable Core Hub absorption runtime
Some checks failed
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / pytest-smoke (push) Failing after 2s

This commit is contained in:
tegwick 2026-08-21 16:16:42 +02:00
parent 7e1ec03f0c
commit 8ab1d0c09a
20 changed files with 2423 additions and 15 deletions

View file

@ -26,6 +26,8 @@ class PortStore(Protocol):
backend_name: str
async def readiness_checks(self) -> dict[str, str]: ...
async def register_extension(
self,
registration: RegistryRegistration,
@ -59,6 +61,9 @@ class InMemoryPortStore:
self._progress_events: list[dict[str, Any]] = []
self._interaction_events: list[dict[str, Any]] = []
async def readiness_checks(self) -> dict[str, str]:
return {"database": "not_applicable"}
async def register_extension(
self,
registration: RegistryRegistration,