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