test / app.py
JeKaSm's picture
Create app.py
8471ba9 verified
raw
history blame
106 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}