YACI / app-hw.py
100stacks
app: YACI app
eac2b07 unverified
raw
history blame contribute delete
119 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World from 🤗!"}