mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-22 00:03:20 +01:00
12 lines
249 B
Python
12 lines
249 B
Python
from easydiffusion import model_manager, app, server, bucket_manager
|
|
from easydiffusion.server import server_api # required for uvicorn
|
|
|
|
app.init()
|
|
|
|
server.init()
|
|
|
|
# Init the app
|
|
model_manager.init()
|
|
app.init_render_threads()
|
|
bucket_manager.init()
|