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
16 lines
405 B
Python
16 lines
405 B
Python
from .author import (
|
|
AuthorBase, AuthorCreate, AuthorUpdate,
|
|
AuthorRead, AuthorList
|
|
)
|
|
from .book import (
|
|
BookBase, BookCreate, BookUpdate,
|
|
BookRead, BookList
|
|
)
|
|
# from .common import PaginatedResponse
|
|
|
|
__all__ = [
|
|
'AuthorBase', 'AuthorCreate', 'AuthorUpdate', 'AuthorRead', 'AuthorList',
|
|
'BookBase', 'BookCreate', 'BookUpdate', 'BookRead', 'BookList',
|
|
# 'PaginatedResponse'
|
|
]
|