Initial commit
This commit is contained in:
20
nodes/__init__.py
Normal file
20
nodes/__init__.py
Normal file
@@ -0,0 +1,20 @@
|
||||
from .character_reader import NODE_CLASS_MAPPINGS as CR_CLASS, NODE_DISPLAY_NAME_MAPPINGS as CR_DISPLAY
|
||||
from .resolution_reader import NODE_CLASS_MAPPINGS as RR_CLASS, NODE_DISPLAY_NAME_MAPPINGS as RR_DISPLAY
|
||||
from .reenforcer import NODE_CLASS_MAPPINGS as RE_CLASS, NODE_DISPLAY_NAME_MAPPINGS as RE_DISPLAY
|
||||
from .lora_from_string import NODE_CLASS_MAPPINGS as LFS_CLASS, NODE_DISPLAY_NAME_MAPPINGS as LFS_DISPLAY
|
||||
|
||||
NODE_CLASS_MAPPINGS = {
|
||||
**CR_CLASS,
|
||||
**RR_CLASS,
|
||||
**RE_CLASS,
|
||||
**LFS_CLASS
|
||||
}
|
||||
|
||||
NODE_DISPLAY_NAME_MAPPINGS = {
|
||||
**CR_DISPLAY,
|
||||
**RR_DISPLAY,
|
||||
**RE_DISPLAY,
|
||||
**LFS_DISPLAY
|
||||
}
|
||||
|
||||
__all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS']
|
||||
Reference in New Issue
Block a user