Global refactoring of the project to use poetry and implement tests,

fixing bugs, changing the handling of dto and db models, preparing to
add new functionality
This commit is contained in:
2025-06-24 13:30:35 +03:00
parent 51a6ba75c0
commit 6658d773bf
58 changed files with 2521 additions and 1008 deletions

View File

@@ -0,0 +1,14 @@
from fastapi import APIRouter
from .authors import router as authors_router
from .books import router as books_router
from .relationships import router as relationships_router
from .misc import router as misc_router
api_router = APIRouter()
# Including all routers
api_router.include_router(authors_router)
api_router.include_router(books_router)
api_router.include_router(relationships_router)
api_router.include_router(misc_router)