mirror of
https://github.com/Azornes/Comfyui-LayerForge.git
synced 2026-03-21 20:52:12 -03:00
13 lines
276 B
Python
13 lines
276 B
Python
from .canvas_node import CanvasView
|
|
|
|
NODE_CLASS_MAPPINGS = {
|
|
"CanvasView": CanvasView
|
|
}
|
|
|
|
NODE_DISPLAY_NAME_MAPPINGS = {
|
|
"CanvasView": "Canvas View"
|
|
}
|
|
|
|
WEB_DIRECTORY = "./js"
|
|
|
|
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS", "WEB_DIRECTORY"] |