CWA / app.py
Marinalinia's picture
Add application file
b830c30
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}