mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-08-18 12:43:33 +08:00
20 lines
276 B
Python
20 lines
276 B
Python
class Options:
|
|
img2img_background_color = "#ffffff" # Set to white for now
|
|
|
|
|
|
class State:
|
|
interrupted = False
|
|
|
|
def begin(self):
|
|
pass
|
|
|
|
def end(self):
|
|
pass
|
|
|
|
|
|
opts = Options()
|
|
state = State()
|
|
cmd_opts = None
|
|
sd_upscalers = []
|
|
face_restorers = []
|