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