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