oh-docker / main.py
cedricable's picture
Rename app.py to main.py
2f3398f
raw
history blame
108 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}