mirror of
https://github.com/Azornes/Comfyui-LayerForge.git
synced 2026-03-21 20:52:12 -03:00
17 lines
323 B
Python
17 lines
323 B
Python
from .canvas_node import CanvasNode
|
|
|
|
# 设置路由
|
|
CanvasNode.setup_routes()
|
|
|
|
NODE_CLASS_MAPPINGS = {
|
|
"CanvasNode": CanvasNode
|
|
}
|
|
|
|
NODE_DISPLAY_NAME_MAPPINGS = {
|
|
"CanvasNode": "Canvas Node"
|
|
}
|
|
|
|
WEB_DIRECTORY = "./js"
|
|
|
|
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS", "WEB_DIRECTORY"]
|