From 8b906153f45e4041fd7d79cc60bfa65257c16a6c Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Sat, 10 Jan 2026 16:24:50 +0100 Subject: [PATCH] Add __init__.py --- __init__.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 __init__.py diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..f000ce1 --- /dev/null +++ b/__init__.py @@ -0,0 +1,11 @@ +from .qwen_plus_node import Mamad8_QwenEditPlus_Standalone + +NODE_CLASS_MAPPINGS = { + "Mamad8_QwenEditPlus_Standalone": Mamad8_QwenEditPlus_Standalone +} + +NODE_DISPLAY_NAME_MAPPINGS = { + "Mamad8_QwenEditPlus_Standalone": "Text Encode Qwen Image Edit Plus (Mamad8 Standalone)" +} + +__all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS'] \ No newline at end of file