This commit is contained in:
2025-08-22 08:32:39 +08:00
parent 0129c90ac8
commit 3e22d9b67d
2 changed files with 15 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
import logging
from fastapi import APIRouter, Request
# 创建路由路由器
router = APIRouter(prefix="/api", tags=["学伴"])
# 配置日志
logger = logging.getLogger(__name__)
@router.post("/xueban")
async def xueban(request: Request):
pass