ai-story / app.py
mjiang7's picture
add user profile update and fetch and preferred game
3303c43
raw
history blame contribute delete
109 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}