Files
LibraryAPI/library_service/models/db/__init__.py

18 lines
434 B
Python

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