AI_Reviewers / app.py
hisaruki's picture
Add application file
6029142
raw
history blame contribute delete
No virus
108 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}