添加示例

This commit is contained in:
2026-09-20 17:06:24 +08:00
parent 71aafe32e9
commit 8a131c1b7b
2 changed files with 25 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#这是一个示例文件,确保api端口能被正常调用
from fastapi import APIRouter
example_router = APIRouter()
@example_router.get("/example")
def example():
return {'hello DoubaoTeam'}