This commit is contained in:
JOLIMAITRE Matthieu 2024-06-13 03:35:36 +02:00
commit 7c135f7034
7 changed files with 144 additions and 0 deletions

14
__init__.py Normal file
View file

@ -0,0 +1,14 @@
import sys
import pathlib
project_dir = pathlib.Path(__file__).parent.resolve()
src_dir = project_dir / "src"
sys.path.insert(1, str(src_dir))
from online_image_node import (
NODE_CLASS_MAPPINGS,
NODE_DISPLAY_NAME_MAPPINGS,
OnlineImageNode
)