Spaces:
Runtime error
Runtime error
File size: 259 Bytes
857d4f5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | from fastapi import FastAPI
from app.api.endpoints import router
from app.core.config import APP_DESCRIPTION, APP_TITLE, APP_VERSION
app = FastAPI(
title=APP_TITLE,
description=APP_DESCRIPTION,
version=APP_VERSION,
)
app.include_router(router)
|