Files
ComfyUI-Lora-Manager/__init__.py
2025-01-25 19:22:02 +08:00

14 lines
250 B
Python

from .nodes import LorasEndpoint
NODE_CLASS_MAPPINGS = {
"LorasEndpoint": LorasEndpoint
}
WEB_DIRECTORY = "./js"
# Add custom websocket event type
EXTENSION_WEB_SOCKET_MESSAGE_TYPES = ["lora-scan-progress"]
__all__ = ['NODE_CLASS_MAPPINGS']