mirror of
https://github.com/Comfy-Org/ComfyUI.git
synced 2026-08-08 11:18:30 +08:00
11 lines
213 B
Python
11 lines
213 B
Python
|
|
from .basic_types import ImageInput, AudioInput, MaskInput, LatentInput
|
||
|
|
from .video_types import VideoInput
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"ImageInput",
|
||
|
|
"AudioInput",
|
||
|
|
"VideoInput",
|
||
|
|
"MaskInput",
|
||
|
|
"LatentInput",
|
||
|
|
]
|