Pygame-story / app.py
om1chael's picture
Add application file-2
c3ccf94
raw
history blame
127 Bytes
from fastapi import FastAPI
from app import app
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}