Files
LibraryAPI/library_service/models/db/__init__.py
2025-06-24 21:47:07 +03:00

15 lines
358 B
Python

from .author import Author
from .book import Book
from .links import (
AuthorBookLink, GenreBookLink,
AuthorWithBooks, BookWithAuthors,
GenreWithBooks, BookWithAuthorsAndGenres
)
__all__ = [
'Author', 'Book',
'AuthorBookLink', 'AuthorWithBooks',
'BookWithAuthors', 'GenreBookLink',
'GenreWithBooks', 'BookWithAuthorsAndGenres'
]