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

6 lines
197 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 Shelf, ShelfBook, Book, Author
2020-02-18 22:44:13 -08:00
from .user import User, UserRelationship, FederatedServer
from .activity import Status, Review
2020-02-11 15:17:21 -08:00