mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-12-21 23:56:34 +00:00
6 lines
319 B
Python
6 lines
319 B
Python
''' bring all the models into the app namespace '''
|
|
from .book import Connector, Book, Work, Edition, Author
|
|
from .shelf import Shelf, ShelfBook
|
|
from .status import Status, Review, Comment, Favorite, Tag, Notification
|
|
from .user import User, UserFollows, UserFollowRequest, UserBlocks
|
|
from .user import FederatedServer
|