speechtotext / app.py
Ansaribinhyder's picture
Hello World
09197b1
raw
history blame
108 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}