TextToSpeech / main.py
bilal01's picture
Update main.py
6da8f38
raw
history blame
118 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}