endpoint setup

This commit is contained in:
exolonConfidental
2026-02-08 11:18:47 +05:30
parent 8fb3b7cf67
commit a77788fc47
33 changed files with 932 additions and 352 deletions

View File

@@ -1,5 +1,7 @@
from fastapi import APIRouter
from app.api.v1.property_routes import router as property_routes
from app.api.v1.endpoints.map import router as map_routes
from app.api.v1.endpoints.property import router as property_routes
api_router = APIRouter()
api_router.include_router(map_routes)
api_router.include_router(property_routes)