notifications logic update (#93)

Co-authored-by: Igor Lobanov <igor.lobanov@onetwotrip.com>
This commit is contained in:
Ilya Y
2023-10-16 11:16:01 +03:00
committed by GitHub
parent 6c8d6c978c
commit aa7ce6bc6f
2 changed files with 13 additions and 10 deletions

View File

@@ -77,15 +77,13 @@ routes = [
]
app = Starlette(
debug=True,
on_startup=[start_up],
on_shutdown=[shutdown],
middleware=middleware,
routes=routes,
)
app.mount("/", GraphQL(
schema,
debug=True
schema
))
dev_app = Starlette(