GreetingsIF / main.py
Dhruv Diddi
feat: match files with docker example
655cf6b
raw
history blame
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}