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