test_app / main.py
Anaudia's picture
Update main.py
ca6386b
raw
history blame contribute delete
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}