bookwyrm-mastodon/fedireads/models/__init__.py

6 lines
207 B
Python
Raw Normal View History

2020-02-11 18:17:21 -05:00
''' bring all the models into the app namespace '''
from .book import Shelf, ShelfBook, Book, Author
2020-02-19 01:44:13 -05:00
from .user import User, UserRelationship, FederatedServer
2020-02-19 03:13:06 -05:00
from .activity import Status, Review, Favorite
2020-02-11 18:17:21 -05:00