from fastapi import FastAPI from routers.sample_router import router as sample_router app = FastAPI() app.include_router(sample_router)