tidal / app.py
jerrrycans's picture
Create app.py
c35ff57 verified
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}