resolvers-updates
Some checks failed
deploy / deploy (push) Failing after 1m30s

This commit is contained in:
2023-12-16 18:24:30 +03:00
parent bf7bc03e50
commit 692dd9cfe0
7 changed files with 171 additions and 34 deletions

View File

@@ -26,7 +26,14 @@ from resolvers.topic import (
)
from resolvers.follower import follow, unfollow, get_my_followed
from resolvers.reader import get_shout, load_shouts_by, load_shouts_feed, load_shouts_search
from resolvers.reader import (
get_shout,
load_shouts_by,
load_shouts_feed,
load_shouts_search,
load_shouts_unrated,
load_shouts_random_top,
)
from resolvers.community import get_community, get_communities_all
__all__ = [
@@ -53,6 +60,8 @@ __all__ = [
"load_shouts_feed",
"load_shouts_search",
"load_shouts_followed",
"load_shouts_unrated",
"load_shouts_random_top",
# follower
"follow",
"unfollow",