Initial commit

This commit is contained in:
Will Miao
2025-01-25 19:22:02 +08:00
commit ad6137d355
13 changed files with 1069 additions and 0 deletions

13
__init__.py Normal file
View File

@@ -0,0 +1,13 @@
from .nodes import LorasEndpoint
NODE_CLASS_MAPPINGS = {
"LorasEndpoint": LorasEndpoint
}
WEB_DIRECTORY = "./js"
# Add custom websocket event type
EXTENSION_WEB_SOCKET_MESSAGE_TYPES = ["lora-scan-progress"]
__all__ = ['NODE_CLASS_MAPPINGS']