From fa7239d9543fe4d54493c375560f875cd381706a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=BA=E6=B5=B7=E5=9B=BD?= <404580946@qq.com> Date: Wed, 24 Sep 2025 18:45:55 +0800 Subject: [PATCH] add version --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 4b6983d..a02f77a 100644 --- a/app/main.py +++ b/app/main.py @@ -20,7 +20,7 @@ app.include_router(items_router, prefix="/api/v1") @app.get("/") def read_root(): - return {"message": "欢迎使用FastAPI示例应用"} + return {"message": "欢迎使用FastAPI示例应用 v1.1"} @app.get("/health") def health_check():