ComfyUI/comfy_api/util/__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
167 B
Python

from .video_types import VideoContainer, VideoCodec, VideoComponents
__all__ = [
# Utility Types
"VideoContainer",
"VideoCodec",
"VideoComponents",
]