Samba / app.py
Kaballas's picture
13
e2118ba
raw
history blame
113 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World! 1234"}