cnn_hf / app_bk.py
tjrlgns09's picture
.
50d5c90
raw
history blame contribute delete
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}