mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-07-27 08:16:44 +00:00
10 lines
192 B
Python
10 lines
192 B
Python
from comfy_api.v3._io import _IO
|
|
from comfy_api.v3._ui import _UI
|
|
from comfy_api.v3._resources import _RESOURCES
|
|
|
|
io = _IO
|
|
ui = _UI
|
|
resources = _RESOURCES
|
|
|
|
__all__ = ["io", "ui", "resources"]
|