Files
comfyui-extras/__init__.py

13 lines
344 B
Python
Raw Normal View History

"""
ComfyUI Extras - Workflow Templates
A collection of production-ready workflow templates for ComfyUI.
Templates are automatically discovered from the example_workflows/ directory.
"""
from .nodes import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
__all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS']
__version__ = "0.1.0"