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

View File

@@ -11,17 +11,17 @@ from app.chain.skills import SkillsChain
from app.chain.subscribe import SubscribeChain
from app.chain.system import SystemChain
from app.chain.transfer import TransferChain
from app.platform.events import Event as ManagerEvent, eventmanager, Event
from app.extensions.plugin_manager import PluginManager
from app.messaging.message import MessageHelper
from app.platform.thread import ThreadHelper
from app.platform.log import logger
from app.runtime.events import Event as ManagerEvent, eventmanager, Event
from app.runtime.extensions.plugin_manager import PluginManager
from app.application.messaging.message import MessageHelper
from app.runtime.thread import ThreadHelper
from app.runtime.log import logger
from app.scheduler import Scheduler
from app.schemas import Notification, CommandRegisterEventData
from app.schemas.types import EventType, MessageChannel, ChainEventType
from app.foundation.object import ObjectUtils
from app.foundation.reflection import ObjectUtils
from app.foundation.singleton import Singleton
from app.foundation.structures import DictUtils
from app.foundation.collections import DictUtils
class CommandChain(ChainBase):