mirror of
https://github.com/wowlikon/LibraryAPI.git
synced 2025-12-11 21:30:46 +00:00
26 lines
468 B
Python
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",
|
|
]
|