tomp61's picture
Added basic FastAPI boilerplate to main.py
f4df5a4 verified
raw
history blame contribute delete
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}