from fastapi import FastAPI from controllers import userManager app = FastAPI() app.include_router(userManager.user_router)