mirror of
https://github.com/wowlikon/LibraryAPI.git
synced 2025-12-11 21:30:46 +00:00
20 lines
502 B
Python
20 lines
502 B
Python
from .author import (
|
|
AuthorBase, AuthorCreate, AuthorUpdate,
|
|
AuthorRead, AuthorList
|
|
)
|
|
from .book import (
|
|
BookBase, BookCreate, BookUpdate,
|
|
BookRead, BookList
|
|
)
|
|
|
|
from .genre import (
|
|
GenreBase, GenreCreate, GenreUpdate,
|
|
GenreRead, GenreList
|
|
)
|
|
|
|
__all__ = [
|
|
'AuthorBase', 'AuthorCreate', 'AuthorUpdate', 'AuthorRead', 'AuthorList',
|
|
'BookBase', 'BookCreate', 'BookUpdate', 'BookRead', 'BookList',
|
|
'GenreBase', 'GenreCreate', 'GenreUpdate', 'GenreRead', 'GenreList',
|
|
]
|