feat: 升级版本为v1.0.4

This commit is contained in:
2026-05-01 10:54:09 +08:00
parent 5cf01e7143
commit 5eb4524560

View File

@@ -1,10 +1,10 @@
from fastapi import FastAPI
app = FastAPI(title="CI/CD Demo", version="1.0.3")
app = FastAPI(title="CI/CD Demo", version="1.0.4")
@app.get("/")
def root():
return {"status": "ok", "version": "1.0.3"}
return {"status": "ok", "version": "1.0.4"}
@app.get("/health")
def health():