feat: Api update to v1.0.6
CI/CD Pipeline / build-and-deploy (push) Successful in 9s

This commit is contained in:
2026-06-16 16:54:24 +08:00
parent 6467a58011
commit 0b2f4f6751
+2 -2
View File
@@ -1,11 +1,11 @@
import uvicorn import uvicorn
from fastapi import FastAPI from fastapi import FastAPI
app = FastAPI(title="CI/CD Demo", version="1.0.5") app = FastAPI(title="CI/CD Demo", version="1.0.6")
@app.get("/") @app.get("/")
def root(): def root():
return {"status": "ok", "version": "1.0.5"} return {"status": "ok", "version": "1.0.6"}
@app.get("/health") @app.get("/health")
def health(): def health():