whisper.api / app /__init__.py
Ved Gupta
error removed and code improved
4e4ad14
raw
history blame contribute delete
308 Bytes
from fastapi import FastAPI
from app.api import api_router
from app.core.config import settings
def create_app() -> FastAPI:
app = FastAPI(title=settings.PROJECT_NAME, version=settings.PROJECT_VERSION)
app.include_router(api_router, prefix=settings.API_V1_STR)
return app
app = create_app()