9 lines
174 B
Python
9 lines
174 B
Python
def community_follow(follower_id, slug):
|
|
# TODO: implement when needed
|
|
return None
|
|
|
|
|
|
def community_unfollow(follower_id, slug):
|
|
# TODO: implement
|
|
return None
|