awacke1's picture
Create app.py
8c8c755
raw
history blame
94 Bytes
from fastapi import FastAPI
app = FastAPI()
def read_root():
return {"Hello": "World!"}