1
0
Fork 0
bookwyrm/fedireads/models/__init__.py

9 lines
415 B
Python
Raw Normal View History

2020-02-11 15:17:21 -08:00
''' bring all the models into the app namespace '''
from .book import Connector, Book, Work, Edition, Author
2020-03-06 22:56:44 -08:00
from .shelf import Shelf, ShelfBook
2020-04-08 09:40:47 -07:00
from .status import Status, Review, Comment, Quotation
from .status import Favorite, Boost, Tag, Notification, ReadThrough
2020-03-29 00:05:09 -07:00
from .user import User, UserFollows, UserFollowRequest, UserBlocks
from .user import FederatedServer
from .import_job import ImportJob, ImportItem