from fastapi import FastAPI from src.routes import user_routes,organization_routes, prediction_routes app = FastAPI(title="NetSentinel Backend") # Register routers # app.include_router(user_routes.router) # app.include_router(organization_routes.router) app.include_router(prediction_routes.router) @app.get("/") def root(): return {"message": "NetSentinel Backend Running"}