2020-02-11 15:17:21 -08:00
|
|
|
''' bring all the models into the app namespace '''
|
|
|
|
from .book import Shelf, ShelfBook, Book, Author
|
2020-02-18 22:44:13 -08:00
|
|
|
from .user import User, UserRelationship, FederatedServer
|
2020-02-20 22:19:19 -08:00
|
|
|
from .activity import Status, Review, Favorite, Tag
|
2020-02-11 15:17:21 -08:00
|
|
|
|