初始化

This commit is contained in:
2026-06-15 09:59:00 +08:00
commit c131f5e7c3
6 changed files with 938 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
"""
Reference Image Manager for ComfyUI.
"""
from .nodes import ReferenceImageManager
NODE_CLASS_MAPPINGS = {
"Reference Image Manager": ReferenceImageManager,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"Reference Image Manager": "参考图管理器",
}
WEB_DIRECTORY = "./web"
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS", "WEB_DIRECTORY"]