Track bundled vendor runtime sources
This commit is contained in:
26
vendor/ComfyUI/comfy_api/input/__init__.py
vendored
Normal file
26
vendor/ComfyUI/comfy_api/input/__init__.py
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
# This file only exists for backwards compatibility.
|
||||
from comfy_api.latest._input import (
|
||||
ImageInput,
|
||||
AudioInput,
|
||||
MaskInput,
|
||||
LatentInput,
|
||||
VideoInput,
|
||||
CurvePoint,
|
||||
CurveInput,
|
||||
MonotoneCubicCurve,
|
||||
LinearCurve,
|
||||
RangeInput,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"ImageInput",
|
||||
"AudioInput",
|
||||
"MaskInput",
|
||||
"LatentInput",
|
||||
"VideoInput",
|
||||
"CurvePoint",
|
||||
"CurveInput",
|
||||
"MonotoneCubicCurve",
|
||||
"LinearCurve",
|
||||
"RangeInput",
|
||||
]
|
||||
14
vendor/ComfyUI/comfy_api/input/basic_types.py
vendored
Normal file
14
vendor/ComfyUI/comfy_api/input/basic_types.py
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
# This file only exists for backwards compatibility.
|
||||
from comfy_api.latest._input.basic_types import (
|
||||
ImageInput,
|
||||
AudioInput,
|
||||
MaskInput,
|
||||
LatentInput,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"ImageInput",
|
||||
"AudioInput",
|
||||
"MaskInput",
|
||||
"LatentInput",
|
||||
]
|
||||
6
vendor/ComfyUI/comfy_api/input/video_types.py
vendored
Normal file
6
vendor/ComfyUI/comfy_api/input/video_types.py
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
# This file only exists for backwards compatibility.
|
||||
from comfy_api.latest._input.video_types import VideoInput
|
||||
|
||||
__all__ = [
|
||||
"VideoInput",
|
||||
]
|
||||
Reference in New Issue
Block a user