Files
DoubaoTeam/api/example.py
T

8 lines
201 B
Python
Raw Normal View History

2026-09-20 17:06:24 +08:00
#这是一个示例文件,确保api端口能被正常调用
from fastapi import APIRouter
example_router = APIRouter()
@example_router.get("/example")
def example():
return {'hello DoubaoTeam'}