forked from mirrors/bookwyrm
5 lines
282 B
Python
5 lines
282 B
Python
''' bring all the models into the app namespace '''
|
|
from .book import Book, Work, Edition, Author
|
|
from .shelf import Shelf, ShelfBook
|
|
from .status import Status, Review, Favorite, Tag, Notification
|
|
from .user import User, FederatedServer, UserFollows, UserFollowRequest, UserBlocks
|