mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-29 21:11:16 +00:00
5 lines
207 B
Python
5 lines
207 B
Python
''' bring all the models into the app namespace '''
|
|
from .book import Shelf, ShelfBook, Book, Author
|
|
from .user import User, UserRelationship, FederatedServer
|
|
from .activity import Status, Review, Favorite
|
|
|