mirror of
https://github.com/linyqh/NarratoAI.git
synced 2025-12-12 03:02:48 +00:00
12 lines
283 B
Python
12 lines
283 B
Python
from fastapi import APIRouter, Depends
|
|
|
|
|
|
def v2_router(dependencies=None):
|
|
router = APIRouter()
|
|
router.tags = ["V2"]
|
|
router.prefix = "/api/v2"
|
|
# 将认证依赖项应用于所有路由
|
|
if dependencies:
|
|
router.dependencies = dependencies
|
|
return router
|