NetSentinel / app.py
Mekam's picture
feat(prediction): add single prediction
d1119e8
raw
history blame contribute delete
383 Bytes
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"}