core/resolvers/community.py

9 lines
174 B
Python
Raw Normal View History

2023-10-05 22:02:14 +00:00
def community_follow(follower_id, slug):
2023-10-05 21:42:34 +00:00
# TODO: implement when needed
return None
2023-10-05 22:02:14 +00:00
def community_unfollow(follower_id, slug):
2023-10-05 21:42:34 +00:00
# TODO: implement
return None