Lazar Radojevic
refactor everything
1cd5053
raw
history blame contribute delete
169 Bytes
from fastapi import FastAPI
from backend.routes import router
# Initialize FastAPI
app = FastAPI()
# Include routes from the routes module
app.include_router(router)