mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-22 05:32:12 -03:00
13 lines
274 B
Python
13 lines
274 B
Python
from .nodes.lora_gateway import LoRAGateway
|
|
|
|
NODE_CLASS_MAPPINGS = {
|
|
"LoRAGateway": LoRAGateway
|
|
}
|
|
|
|
NODE_DISPLAY_NAME_MAPPINGS = {
|
|
"LoRAGateway": "LoRAGateway"
|
|
}
|
|
|
|
WEB_DIRECTORY = "./js"
|
|
|
|
__all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS', 'WEB_DIRECTORY'] |