dockerhtml / app.py
ammaan's picture
Create app.py
767e777 verified
raw
history blame
No virus
137 Bytes
from typing import Union
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World Bob"}