12 lines
318 B
Python
Raw Permalink Normal View History

2025-07-18 17:45:06 +08:00
import uvicorn
2025-07-21 11:50:05 +08:00
from fastapi import FastAPI
from src.routers import routers # 导入路由集合
2025-07-18 17:45:06 +08:00
2025-07-21 11:50:05 +08:00
app = FastAPI(title="FastAPI文档")
2025-07-18 17:45:06 +08:00
2025-07-21 11:50:05 +08:00
for router in routers:
app.include_router(router) # 自动注册所有路由
2025-07-18 17:45:06 +08:00
if __name__ == '__main__':
uvicorn.run(app='main:app', host='0.0.0.0', port=1314, reload=True)