from fastapi import FastAPI from backend.api.router import api_router app = FastAPI(title="Notes") # attach router app.include_router(api_router)