init
This commit is contained in:
commit
7c135f7034
7 changed files with 144 additions and 0 deletions
14
__init__.py
Normal file
14
__init__.py
Normal 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
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue