mirror of
https://github.com/wowlikon/LibraryAPI.git
synced 2025-12-11 21:30:46 +00:00
fixing bugs, changing the handling of dto and db models, preparing to add new functionality
15 lines
437 B
Python
15 lines
437 B
Python
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)
|