updates-fixes
Some checks failed
deploy / deploy (push) Failing after 2m0s

This commit is contained in:
Untone 2023-10-25 20:02:01 +03:00
parent 46e684b28d
commit 04dedaa3a3
2 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,6 @@ from orm.community import Community
def init_tables():
Base.metadata.create_all(engine)
Shout.init_table()
Community.init_table()
Shout.init_table()
print("[orm] tables initialized")

View File

@ -4,6 +4,7 @@ from resolvers.author import (
load_authors_by,
update_profile,
get_authors_all,
rate_author
)
from resolvers.reaction import (
@ -32,6 +33,7 @@ __all__ = [
"load_authors_by",
"update_profile",
"get_authors_all",
"rate_author",
# reader
"load_shout",
"load_shouts_by",