Add __init__.py

This commit is contained in:
2026-01-18 13:36:35 +01:00
parent 4c45fa95c1
commit e2c3d7a28c

13
__init__.py Normal file
View File

@@ -0,0 +1,13 @@
from .sharp_node import SharpFrameSelector
# Map the class to a name ComfyUI recognizes
NODE_CLASS_MAPPINGS = {
"SharpFrameSelector": SharpFrameSelector
}
# Map the internal name to a human-readable label in the menu
NODE_DISPLAY_NAME_MAPPINGS = {
"SharpFrameSelector": "Sharp Frame Selector (Video)"
}
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS"]