mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-22 13:42:12 -03:00
15 lines
329 B
Python
15 lines
329 B
Python
class LoRAGateway:
|
|
"""
|
|
LoRA Gateway Node
|
|
Acts as the entry point for LoRA management services
|
|
"""
|
|
@classmethod
|
|
def INPUT_TYPES(cls):
|
|
return {
|
|
"required": {},
|
|
"optional": {}
|
|
}
|
|
|
|
RETURN_TYPES = ()
|
|
FUNCTION = "register_services"
|
|
CATEGORY = "LoRA Management" |