The separate ComfyUI-JSON-Dynamic extension provides the same node. Removes json_loader.py, web/json_dynamic.js, and their tests. Only ProjectLoaderDynamic remains in this extension. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
314 B
Python
9 lines
314 B
Python
from .project_loader import PROJECT_NODE_CLASS_MAPPINGS, PROJECT_NODE_DISPLAY_NAME_MAPPINGS
|
|
|
|
NODE_CLASS_MAPPINGS = PROJECT_NODE_CLASS_MAPPINGS
|
|
NODE_DISPLAY_NAME_MAPPINGS = PROJECT_NODE_DISPLAY_NAME_MAPPINGS
|
|
|
|
WEB_DIRECTORY = "./web"
|
|
|
|
__all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS', 'WEB_DIRECTORY']
|