FastAPI hello world with docker container.

This commit is contained in:
Tom Alexander
2024-10-15 19:16:25 -04:00
parent f70303193b
commit e1e31d0ca3
8 changed files with 491 additions and 0 deletions

View File

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