from fastapi import FastAPI from app.routes.OK import router as OK_router app = FastAPI() app.include_router(OK_router)