dify插件初步构建

This commit is contained in:
2025-12-30 13:38:32 +08:00
parent 8011dec826
commit c07fe6b938
27 changed files with 820 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
# API模块
from fastapi import APIRouter
from .QrCodeAPI import router as qrcode_router
# 创建主路由器
router = APIRouter()
# 注册所有子路由
router.include_router(qrcode_router, prefix="/qrcode", tags=["二维码相关服务"])
__all__ = ["router"]