Backend / app.py
bachephysicdun's picture
remove main
d892ab2
raw
history blame
106 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}