mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-22 05:32:12 -03:00
13 lines
250 B
Python
13 lines
250 B
Python
from .nodes import LorasEndpoint
|
|
|
|
NODE_CLASS_MAPPINGS = {
|
|
"LorasEndpoint": LorasEndpoint
|
|
}
|
|
|
|
WEB_DIRECTORY = "./js"
|
|
|
|
# Add this init function to properly register routes
|
|
def init():
|
|
LorasEndpoint.add_routes()
|
|
|
|
__all__ = ['NODE_CLASS_MAPPINGS'] |