bookwyrm/fedireads/models/__init__.py

6 lines
282 B
Python
Raw Normal View History

2020-02-11 23:17:21 +00:00
''' bring all the models into the app namespace '''
2020-03-07 06:56:44 +00:00
from .book import Book, Work, Edition, Author
from .shelf import Shelf, ShelfBook
2020-03-07 22:50:29 +00:00
from .status import Status, Review, Favorite, Tag, Notification
from .user import User, FederatedServer, UserFollows, UserFollowRequest, UserBlocks