refactor: strengthen architecture CI gates and runtime contracts

This commit is contained in:
jxxghp
2026-08-25 17:02:29 +08:00
parent 605bf8174a
commit b914e8b6e4
123 changed files with 4240 additions and 1342 deletions
+4 -4
View File
@@ -1,13 +1,13 @@
from typing import Any, Annotated
from typing import Annotated, Any
from fastapi import Depends, Request
from app.schemas.response import Response as _SchemaResponse
from app.api.response import ResponseAPIRouter
from app.chain.webhook import WebhookChain
from app.adapters.web.security.access import verify_apitoken
from app.api.context import get_background_task_registry, resolve_background_task_registry
from app.api.response import ResponseAPIRouter
from app.chain.webhook import WebhookChain
from app.runtime.tasks import TaskRegistry
from app.schemas.response import Response as _SchemaResponse
router = ResponseAPIRouter()