from fastapi import FastAPI from .log import router as log_router def register_routers(app: FastAPI): app.include_router(log_router, prefix="")