refactor: reorganize backend module boundaries

This commit is contained in:
jxxghp
2026-08-14 19:53:33 +08:00
parent fe0b444ceb
commit 369d7d6448
584 changed files with 2423 additions and 2275 deletions
+6 -6
View File
@@ -5,13 +5,13 @@ from pathlib import Path
from typing import Union, Optional
from app.chain import ChainBase
from app.platform.config import settings
from app.extensions.plugin_manager import PluginManager
from app.platform.runtime import SystemHelper
from app.platform.log import logger
from app.runtime.config import settings
from app.runtime.extensions.plugin_manager import PluginManager
from app.runtime.state import SystemHelper
from app.runtime.log import logger
from app.schemas import Notification, MessageChannel
from app.foundation.http import RequestUtils
from app.infrastructure.system import SystemUtils
from app.adapters.network.http import RequestUtils
from app.adapters.system.host import SystemUtils
from version import FRONTEND_VERSION, APP_VERSION