ComfyUI/comfy_api/input/__init__.py
Jacob Segal 08f5d7d0b7 Refactor new types out of the base comfy folder
I've created a new `comfy_api` top-level module. The intention is that
anything within this folder would be covered by semver-style versioning
that would allow custom nodes to rely on them not introducing breaking
changes.
2025-04-28 19:35:57 -07:00

9 lines
153 B
Python

from .basic_types import ImageInput, AudioInput
from .video_types import VideoInput
__all__ = [
"ImageInput",
"AudioInput",
"VideoInput",
]