mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-11 14:50:49 +08:00
13 lines
376 B
Python
13 lines
376 B
Python
from .cfz_caching_condition import save_conditioning, load_conditioning
|
|
|
|
# CFZ Save-Load Conditioning Node Pack
|
|
NODE_CLASS_MAPPINGS = {
|
|
"CFZ_save_conditioning": save_conditioning,
|
|
"CFZ_load_conditioning": load_conditioning,
|
|
}
|
|
|
|
NODE_DISPLAY_NAME_MAPPINGS = {
|
|
"CFZ_save_conditioning": "CFZ Save Conditioning",
|
|
"CFZ_load_conditioning": "CFZ Load Conditioning",
|
|
}
|