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