2025-12-25 16:43:26 +08:00

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")