From b9a7d2a78c595d5e936bab7822e6a057ca09b7c4 Mon Sep 17 00:00:00 2001 From: Jin Yi Date: Tue, 26 Aug 2025 10:07:32 +0900 Subject: [PATCH] Revert "As a temporary measure, the new UI will use the legacy/... backend structure." This reverts commit 121a5a1888cad4aae190d48ab7e04fc6d7edc3b5. --- comfyui_manager/__init__.py | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/comfyui_manager/__init__.py b/comfyui_manager/__init__.py index 09432a73..c96a34ee 100644 --- a/comfyui_manager/__init__.py +++ b/comfyui_manager/__init__.py @@ -29,15 +29,9 @@ def start(): print("Error enabling legacy ComfyUI Manager frontend:", e) core = None else: - # NOTE: As a temporary measure, the new UI will use the legacy backend structure. - # The glob version will be applied later after the cacheless implementation is completed. - from .legacy import manager_server # noqa: F401 - from .legacy import share_3rdparty # noqa: F401 - from .legacy import manager_core as core - - # from .glob import manager_server # noqa: F401 - # from .glob import share_3rdparty # noqa: F401 - # from .glob import manager_core as core + from .glob import manager_server # noqa: F401 + from .glob import share_3rdparty # noqa: F401 + from .glob import manager_core as core if core is not None: manager_security.is_personal_cloud_mode = core.get_config()['network_mode'].lower() == 'personal_cloud'