bookwyrm/fedireads/models/__init__.py

6 lines
210 B
Python
Raw Normal View History

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