mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2025-12-16 18:02:58 +08:00
the existing cache-based implementation will be retained as a fallback under legacy/..., while glob/... will be updated to a cacheless implementation.
17 lines
329 B
Python
17 lines
329 B
Python
import enum
|
|
|
|
class NetworkMode(enum.Enum):
|
|
PUBLIC = "public"
|
|
PRIVATE = "private"
|
|
OFFLINE = "offline"
|
|
|
|
class SecurityLevel(enum.Enum):
|
|
STRONG = "strong"
|
|
NORMAL = "normal"
|
|
NORMAL_MINUS = "normal-minus"
|
|
WEAK = "weak"
|
|
|
|
class DBMode(enum.Enum):
|
|
LOCAL = "local"
|
|
CACHE = "cache"
|
|
REMOTE = "remote" |