mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-10 17:25:35 +00:00
6 lines
219 B
Python
6 lines
219 B
Python
|
''' bring all the models into the app namespace '''
|
||
|
from .book import Shelf, ShelfBook, Book, Author
|
||
|
from .user import User, FederatedServer
|
||
|
from .activity import Activity, ShelveActivity, FollowActivity, Review, Note
|
||
|
|