From 3441d17b95f68cd3fd872e17a0ddba4a28912245 Mon Sep 17 00:00:00 2001 From: Jacob Windsor Date: Wed, 19 Feb 2025 12:50:54 +0100 Subject: [PATCH] Update description --- backend/app/main.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/backend/app/main.py b/backend/app/main.py index e017a97..81b4bf2 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -1,10 +1,9 @@ from fastapi import FastAPI from fastapi.middleware.cors import CORSMiddleware -from backend.app.dtos import predictions app = FastAPI( - title="Housing Price Predictor API", - description="API for predicting housing prices", + title="Fair Housing API", + description="Provides access to core functionality for the fair housing platform.", version="1.0.0" ) @@ -16,6 +15,3 @@ app.add_middleware( allow_methods=["*"], allow_headers=["*"], ) - -# Include routers -app.include_router(predictions.router, prefix="/api/v1") \ No newline at end of file