0.2.15
Some checks failed
deploy / deploy (push) Failing after 1m58s

This commit is contained in:
2023-11-24 02:00:28 +03:00
parent c150d28447
commit a63cf24812
12 changed files with 187 additions and 139 deletions

View File

@@ -1,11 +1,6 @@
from resolvers.editor import create_shout, delete_shout, update_shout
from resolvers.author import (
load_authors_by,
update_profile,
get_authors_all,
rate_author
)
from resolvers.author import load_authors_by, update_profile, get_authors_all, rate_author
from resolvers.reaction import (
create_reaction,
@@ -25,7 +20,7 @@ from resolvers.topic import (
)
from resolvers.follower import follow, unfollow
from resolvers.reader import load_shout, load_shouts_by
from resolvers.reader import load_shout, load_shouts_by, search
from resolvers.community import get_community, get_communities_all
__all__ = [
@@ -62,4 +57,6 @@ __all__ = [
# community
"get_community",
"get_communities_all",
# search
"search",
]