1from fastapi import FastAPI2 3from .api_route import router as api_router4 5app = FastAPI()6 7app.include_router(api_router, prefix="/api")8