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

26 lines
468 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",
]