Spaces:
Paused
Paused
| from fastapi import FastAPI | |
| from DBFiles.Listing import router as listing_router | |
| app = FastAPI() | |
| def read_root(): | |
| return {"message": "Welcome to the API"} | |
| # Include the router from Listing.py | |
| app.include_router(listing_router) | |