dockerhtml / main.py
ammaan's picture
Upload 2 files
e38aaac verified
raw
history blame
146 Bytes
from typing import Union
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World Bob"}