-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path__init__.py
More file actions
18 lines (15 loc) · 737 Bytes
/
Copy path__init__.py
File metadata and controls
18 lines (15 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
@author:"˶𝞢⤬⫒ⵖsᐼ˶"
@title: "Selector"
@nickname: "Selector"
@version: "4.0.7"
@project: "https://github.com/exdysa/comfyui-selector",
@description: "EXDYSA. Selector and Recourse. Presets & failsafes. Work flow."
"""
from . import recourse
from . import selector
from . import selector_in
from . import selector_out
NODE_CLASS_MAPPINGS = recourse.NODE_CLASS_MAPPINGS | selector.NODE_CLASS_MAPPINGS | selector_in.NODE_CLASS_MAPPINGS | selector_out.NODE_CLASS_MAPPINGS
NODE_DISPLAY_NAME_MAPPINGS = recourse.NODE_DISPLAY_NAME_MAPPINGS | selector.NODE_DISPLAY_NAME_MAPPINGS | selector_in.NODE_DISPLAY_NAME_MAPPINGS | selector_out.NODE_DISPLAY_NAME_MAPPINGS
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS"]