SportsAI / app.py
nicolasbuitragob's picture
first commit
698a89d
raw
history blame
114 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"message": "Hello World"}