From 1a154b89571ebc27e3a9e617b3eb66bceaed5af8 Mon Sep 17 00:00:00 2001 From: huangzhuang_3rd Date: Thu, 13 Aug 2026 00:45:39 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20V1=20-=20DAG=E7=BC=96=E6=8E=92/?= =?UTF-8?q?=E5=91=8A=E8=AD=A6=E7=B3=BB=E7=BB=9F/Agent=E5=BE=AA=E7=8E=AF/?= =?UTF-8?q?=E7=9F=A5=E8=AF=86=E5=BA=93RAG/Webhook=20+=20=E5=AE=A1=E6=A0=B8?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E5=AF=8C=E4=B8=8A=E4=B8=8B=E6=96=87=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/app/api/v1/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/backend/app/api/v1/__init__.py b/backend/app/api/v1/__init__.py index 2b936a1..b3ffdd7 100644 --- a/backend/app/api/v1/__init__.py +++ b/backend/app/api/v1/__init__.py @@ -2,6 +2,7 @@ from fastapi import APIRouter from app.api.v1 import ( auth, tenants, users, projects, tasks, workers, reviews, artifacts, dashboard, + alerts, dag, webhooks, knowledge, ) api_router = APIRouter(prefix="/api/v1") @@ -14,3 +15,7 @@ api_router.include_router(workers.router, tags=["workers"]) api_router.include_router(reviews.router, tags=["reviews"]) api_router.include_router(artifacts.router, tags=["artifacts"]) api_router.include_router(dashboard.router, tags=["dashboard"]) +api_router.include_router(alerts.router, tags=["alerts"]) +api_router.include_router(dag.router, tags=["dag"]) +api_router.include_router(webhooks.router, tags=["webhooks"]) +api_router.include_router(knowledge.router, tags=["knowledge"])