mediaflow-proxy / app.py
Thao Nguyen
Add application file
26c8a82
raw
history blame contribute delete
110 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}