14 lines
274 B
Python
14 lines
274 B
Python
from fastapi import FastAPI
|
|
from app.api.routes import router
|
|
from app.core.config import settings
|
|
from app.core.logging import log
|
|
|
|
app = FastAPI(
|
|
title=settings.app_name,
|
|
debug=settings.debug,
|
|
)
|
|
|
|
app.include_router(router)
|
|
|
|
log.info("FastAPI application started")
|