Backend / app.py
bachephysicdun's picture
fix minor bug
121a86c
raw
history blame
222 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}
if __name__ == "__main__":
import uvicorn
uvicorn.run("app:app", host="localhost", reload=True, port=8000)