Initial commit
Some checks failed
ci / docker (push) Failing after 1m17s

This commit is contained in:
2024-10-03 11:29:39 +02:00
commit 7dbb1418e9
7 changed files with 70 additions and 0 deletions

8
my_api/app.py Normal file
View File

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