docker_test / main.py
akh1r0ck
initialize
b9ff1f0
raw
history blame
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}