mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-09 13:50:49 +08:00
14 lines
246 B
Python
14 lines
246 B
Python
from asyncio import AbstractEventLoop
|
|
|
|
from ..cmd.execution import PromptQueue
|
|
from ..cmd.server import PromptServer
|
|
|
|
|
|
class Comfy:
|
|
loop: AbstractEventLoop
|
|
server: PromptServer
|
|
queue: PromptQueue
|
|
|
|
def __init__(self):
|
|
pass
|