mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-03-19 16:16:00 +08:00
23 lines
398 B
Python
23 lines
398 B
Python
# This file only exists for backwards compatibility.
|
|
from comfy_api.latest._input import (
|
|
ImageInput,
|
|
AudioInput,
|
|
MaskInput,
|
|
LatentInput,
|
|
VideoInput,
|
|
CurveInput,
|
|
MonotoneCubicCurve,
|
|
LinearCurve,
|
|
)
|
|
|
|
__all__ = [
|
|
"ImageInput",
|
|
"AudioInput",
|
|
"MaskInput",
|
|
"LatentInput",
|
|
"VideoInput",
|
|
"CurveInput",
|
|
"MonotoneCubicCurve",
|
|
"LinearCurve",
|
|
]
|