Added ComfyNodeInternal to comfy_api.internal that will contain classes intended to be used by all V3 schema iterations going forward

This commit is contained in:
kosinkadink1@gmail.com
2025-07-15 14:27:39 -05:00
parent 4294dfc496
commit d99f778982
2 changed files with 63 additions and 3 deletions

View File

@@ -0,0 +1,6 @@
class ComfyNodeInternal:
'''Class that all V3-based APIs inhertif from for ComfyNode.
This is intended to only be referenced within execution.py, as it has to handle all V3 APIs going forward.'''
...