Spaces:
Sleeping
Sleeping
File size: 169 Bytes
1cd5053 |
1 2 3 4 5 6 7 8 9 10 |
from fastapi import FastAPI
from backend.routes import router
# Initialize FastAPI
app = FastAPI()
# Include routes from the routes module
app.include_router(router)
|