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