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
+8 -8
View File
@@ -13,11 +13,11 @@ from starlette.responses import StreamingResponse
from app import schemas
from app.api.response import ResponseAPIRouter
from app.command import Command
from app.platform.cache import async_fresh
from app.platform.config import settings
from app.platform.events import eventmanager
from app.extensions.plugin_manager import PluginManager
from app.security.access import (
from app.runtime.cache import async_fresh
from app.runtime.config import settings
from app.runtime.events import eventmanager
from app.runtime.extensions.plugin_manager import PluginManager
from app.application.security.access import (
resource_token_cookie,
verify_apikey,
verify_resource_token,
@@ -30,9 +30,9 @@ from app.db.user_oper import (
get_current_active_superuser_async,
)
from app.factory import app
from app.integrations.server import MoviePilotServerHelper
from app.integrations.market import PluginHelper
from app.platform.log import logger
from app.adapters.external.server import MoviePilotServerHelper
from app.adapters.external.market import PluginHelper
from app.runtime.log import logger
from app.scheduler import Scheduler
from app.schemas.event import PluginDataResetEventData
from app.schemas.types import ChainEventType, SystemConfigKey