from fastapi import FastAPI from .routes import router from .logger import setup_logging app = FastAPI() setup_logging() app.include_router(router)