bookwyrm/fedireads/activitypub/__init__.py

9 lines
414 B
Python
Raw Normal View History

''' bring activitypub functions into the namespace '''
from .actor import get_actor
from .collection import get_outbox, get_outbox_page, get_add, get_remove, \
2020-02-19 08:13:06 +00:00
get_following, get_followers
from .create import get_create
2020-02-19 06:44:13 +00:00
from .follow import get_follow_request, get_unfollow, get_accept
2020-02-19 08:13:06 +00:00
from .status import get_review, get_review_article, get_status, get_replies, \
2020-02-21 06:19:19 +00:00
get_favorite, get_add_tag, get_remove_tag