from fastapi import FastAPI from backend.routes import router # Initialize FastAPI app = FastAPI() # Include routes from the routes module app.include_router(router)