8 lines
201 B
Python
8 lines
201 B
Python
#这是一个示例文件,确保api端口能被正常调用
|
|
from fastapi import APIRouter
|
|
|
|
example_router = APIRouter()
|
|
|
|
@example_router.get("/example")
|
|
def example():
|
|
return {'hello DoubaoTeam'} |