mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-09-06 16:27:04 +08:00
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.
9 lines
167 B
Python
9 lines
167 B
Python
from .video_types import VideoContainer, VideoCodec, VideoComponents
|
|
|
|
__all__ = [
|
|
# Utility Types
|
|
"VideoContainer",
|
|
"VideoCodec",
|
|
"VideoComponents",
|
|
]
|