feat(isolation): sealed worker data serialization

This commit is contained in:
John Pollock
2026-04-29 00:23:25 -05:00
parent d1155318eb
commit fbb6be5624
4 changed files with 315 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
"""Compatibility shim for the indexed serializer path."""
from __future__ import annotations
from typing import Any
def register_custom_node_serializers(_registry: Any) -> None:
"""Legacy no-op shim.
Serializer registration now lives directly in the active isolation adapter.
This module remains importable because the isolation index still references it.
"""
return None
__all__ = ["register_custom_node_serializers"]