mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-04-11 19:12:34 +08:00
Adds torch-free serializers for sealed workers: ndarray (base64), PLY (point clouds), NPZ (depth frames), TRIMESH (meshes), SKELETON (geometry). comfy_api_sealed_worker package for V1-style sealed node type definitions. SaveNPZ/SavePLY nodes. comfy_api _ui.py child-process detection.
17 lines
445 B
Python
17 lines
445 B
Python
"""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"]
|