dev-mode-python / app.py
sbrandeis's picture
sbrandeis HF staff
Create app.py
5fa5a4a verified
raw
history blame contribute delete
No virus
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}