Files
test-cicd/my_api/app.py
Arnaud Scheffler 7dbb1418e9
Some checks failed
ci / docker (push) Failing after 1m17s
Initial commit
2024-10-03 11:29:39 +02:00

9 lines
117 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}