mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-10 06:10:50 +08:00
9 lines
291 B
Python
9 lines
291 B
Python
import asyncio
|
|
import warnings
|
|
|
|
from comfy.cmd.main import main
|
|
|
|
if __name__ == "__main__":
|
|
warnings.warn("main.py is deprecated. Start comfyui by installing the package through the instructions in the README, not by cloning the repository.", DeprecationWarning)
|
|
asyncio.run(main())
|