2020-02-11 18:17:21 -05:00
|
|
|
''' bring all the models into the app namespace '''
|
|
|
|
from .book import Shelf, ShelfBook, Book, Author
|
|
|
|
from .user import User, FederatedServer
|
2020-02-15 14:13:49 -05:00
|
|
|
from .activity import Activity, ShelveActivity, FollowActivity, \
|
|
|
|
ReviewActivity, Status, Review
|
2020-02-11 18:17:21 -05:00
|
|
|
|