new test
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 7s
Uvicorn App Start Test / Test-Uvicorn-App (push) Failing after 49s

This commit is contained in:
2025-06-16 15:30:49 +02:00
parent 3fc19712f2
commit b1b6155269
2 changed files with 37 additions and 0 deletions

7
main.py Normal file
View File

@@ -0,0 +1,7 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}