mirror of
https://github.com/flibusta-apps/users_settings_server.git
synced 2025-12-06 14:45:38 +01:00
11 lines
233 B
Python
11 lines
233 B
Python
import sentry_sdk
|
|
from sentry_sdk.integrations.asgi import SentryAsgiMiddleware
|
|
|
|
from core.app import start_app
|
|
from core.config import env_config
|
|
|
|
|
|
sentry_sdk.init(dsn=env_config.SENTRY_SDN)
|
|
|
|
app = SentryAsgiMiddleware(start_app())
|